當前位置:才華齋>設計>網頁設計>

經典SQL語句大全

網頁設計 閱讀(1.31W)

1、建立資料庫: create database 資料庫名

經典SQL語句大全

如:create database student;

2、連線到一個已經存在的資料庫: use 資料庫名

如:use student;

3、刪除資料庫:drop database 資料庫名

如: drop database student;

4、建立表:create table 表名列名列的資料型別列的約束])

如:create table stuInfo(stuId int primary key,stuName var20) not null)

5、刪除表: 表名

如: stuInfo;

6、修改表:alter table

給表新增新列: alter table 表名 add 列名列的資料型別

新增多列,中間用逗號隔開

如:alter table stuInfo add stuGender var10)

修改某列的資料型別:alter table 表名 modify 列名新資料型別

如:alter table stuInfo modify stuGender int

修改列名:alter table 表名 change 老列名新列名資料型別

如:alter table stuInfo change stuName stuAddress var30)

刪除列:alter table 表名 drop 列名

如: alter table stuInfo drop stuGender

7、將建立的表的'語句反向匯出: show create table 表名

8、查詢表的所有內容:select * from 表名

查詢表的部分內容: select 列名列表 from 表名

9、查詢表結構:show columns from 表名

10、插入單行資料: into 表名列名列表) values(值列表)

11、插入多行資料:作用相當於將資料從一個表複製到另一個表

into 表名 (列名列表) select

如將stuInfo表中的所有的學生姓名複製到students表中的stuName列中: into students(stuName) select stuName from stuInfo

12、刪除資料: from 表名 where過濾條件

如刪除stuID為4的人的資料: from stuInfo where stuId=4