Mysql 數據庫創建基本步驟


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用戶進入控制台后無法切換用戶,只能先退出終端,再重新連接。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM