萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> 數據庫綜合 >> MySQL語句大全分享

MySQL語句大全分享

MySQL是一種關系數據庫管理系統,關系數據庫將數據保存在不同的表中,而不是將所有數據放在一個大倉庫內,這樣就增加了速度並提高了靈活性。我們為大家收集整理了關於MySQL語句,以方便大家參考。

1、創建數據庫: create database <數據庫名>;

如:create database student;

2、連接到一個已經存在的數據庫: use <數據庫名>;

如:use student;

3、刪除數據庫:drop database <數據庫名>;

如: drop database student;

4、創建表:create table <表名>(<列名><列的數據類型>[<列的約束>])

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

5、刪除表: drop table <表名>

如: drop table stuInfo;

6、修改表:alter table

給表添加新列: alter table <表名> add <列名><列的數據類型>;

添加多列,中間用逗號隔開

如:alter table stuInfo add stuGender varchar(10)

修改某列的數據類型:alter table <表名> modify <列名><新數據類型>

如:alter table stuInfo modify stuGender int

修改列名:alter table <表名> change <老列名><新列名><數據類型>

如:alter table stuInfo change stuName stuAddress varchar(30)

刪除列:alter table <表名> drop <列名>

如: alter table stuInfo drop stuGender

7、將創建的表的語句反向導出: show create table <表名>

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

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

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

10、插入單行數據:insert into <表名>(<列名列表>) values(<值列表>)

11、插入多行數據:作用相當於將數據從一個表復制到另一個表

insert into <表名> (列名列表) select

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

12、刪除數據:delete from <表名> where<過濾條件>

如刪除stuID為4的人的數據:delete from stuInfo where stuId=4

希望大家可以學會MySQL語句.想了解更多精彩內容,請關注我們的網站!

相關推薦:

MySQL四捨五入實現方法

想了解更多關於MySQL教程。請點擊精品學習網編程開發欄目!!

copyright © 萬盛學電腦網 all rights reserved