Mysql 数据库创建基本步骤

系统 1877 0

1.创建数据库

create database school;

2.使用数据库

Use school;

3.创建用户  

create user jame@localhost identified by 'jame';

4.授权用户(注意这里是用了*哦,自己将school也替换成*号)

grant select,update,insert,create on school.* to jame@localhost identified by 'j ame';

5.取消授权(现在明白为啥直接敲privilege 没用了吧?)

revoke select,update,insert,create on school.* from jame@localhost;

6.创建表

create table students(s_name varchar(10) not null,age int(3),sex char(1),heig ht int,s_no varchar(20) not null,primary key(s_no));

7.修改表名

alter table students rename to student;

8.修改列

alter table students change s_name name varchar(20) not null;

9.增加列

alter table student add class varchar(20);

10.删除列

alter table student drop column class;

11.删除表

drop table student;

12.删除用户

drop user jame;

13.删除数据库

drop database school;

查看数据库的表结构方法 desc students; 或者 describe students; 另:mysql用户进入控制台后无法切换用户,只能先退出终端,再重新连接。

Mysql 数据库创建基本步骤


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论