首頁 > 軟體

mysql sql常用語句大全

2022-06-18 14:02:15

一 、常用運算元據庫的命令

show databases; 檢視所有的資料庫
create database test; 建立一個叫test的資料庫
drop database test;刪除一個叫test的資料庫
use test;選中庫 ,在建表之前必須要選擇資料庫
show tables; 在選中的資料庫之中檢視所有的表
create table 表名 (欄位1 型別, 欄位2 型別);
desc 表名;檢視所在的表的欄位
drop table 表名; 刪除表
show create database 庫名;檢視建立庫的詳細資訊
show create table 表名; 檢視建立表的詳細資訊

二、修改表的命令

修改欄位型別 alter table 表名 modify 欄位 欄位型別;
新增新的欄位 alter table 表名 add 欄位 欄位型別
新增欄位並指定位置  alter table 表名 add 欄位 欄位型別   after 欄位;
刪除表欄位  alter table 表名 drop 欄位名;
修改指定的欄位  alter table 表名 change 原欄位名字  新的欄位名字 欄位型別

三、對資料的操作

1.增加資料(insert)3種方式
    1.1 insert into 表名 values(值1,值2,...)(很少用)
    1.2 insert into 表名(欄位1,欄位2...) values(值1,值2,....);(較常用)
    1.3 insert into 表名(欄位1,欄位2...) values(值1,值2,....),(值1,值2,....),(值1,值2,....);
2.刪除資料(delete) delete from 表名 where 條件 注意:where 條件必須加,否則資料會被全部刪除
3.更新資料(update)  update 表名 set欄位1 = 值1, 欄位2 = 值2 where 條件
4.查詢資料(select)
    4.1 查詢表中的所有資料   select * from 表名
    4.2 指定資料查詢    select 欄位 from 表名 
    根據條件查詢出來的資料  select 欄位 from 表名 where 條件 (最常用的)
    where 條件後面跟的條件
     關係:>,<,>=,<=,!=  
     邏輯:or, and 
     區間:id between 4 and 6 ;閉區間,包含邊界
5.排序
select 欄位 from 表 order by 欄位  排序關鍵詞(desc | asc)
排序關鍵詞 desc 降序 asc 升序(預設)
    5.1 通過欄位來排序
    例如 :select * from star order by money desc, age asc;   
    5.2 多欄位排序
    select 欄位 from 表 order by 欄位1  desc |asc,...欄位n desc| asc;
6.常用的統計函數 sum,avg,count,max,min
    只分組:select * from 表 group by 欄位
    例子: select count(sex) as re,sex from star group by sex having re > 3;
    分組統計: select count(sex) from star group by sex;
7.分組 select * from 表名  limit 偏移量,數量
    說明:
        8.1.不寫偏移量的話就是預設的為0
        8.2.實現分頁的時候必須寫偏移量
        偏移量怎麼計算?:
        limit (n-1)*數量 ,數量 

四、多表聯合查詢

1.內連線
隱式內連線 select username,name from user,goods where user,gid=gods,gid;
顯示內連線
select username,from user inner join goods on user.gid=goods.gid;
select * from user left join goods on user.gid=goods.gid;
2.外連線
左連線 包含所有的左邊表中的記錄以及右邊表中沒有和他匹配的記錄
右連線 
select * from user where gid in(select gid from goods);
select * from user right jOin goods on user.gid=goods.gid;
子巢狀查詢
資料聯合查詢
select * from user left join goods on user.gid=goods.gid union select * from user right join goods on user.gid=goods.gid;
兩個表同時更新
update user u, goods g set u.gid=12,g.price=1 where u.id=2 and u.gid=g.gid;

五、DCL 資料控制語言

建立使用者:create user'xiaoming'@'localhost' identified by '666666';
授權使用者:grant all on test.*to'xiaoming'@'localhost';
重新整理許可權:flush privileges;
取消授權:revoke all on test.* from 'xiaoming'@'localhost';
刪除使用者: drop user'xiaoming'@'localhost';

六、DTL 資料事務語言

開啟事務:set autocommit=0;
操作回滾:rollback;
提交事務:commit;

下面看下mysql更新語句數量較多時的處理

範例

update user1 a,user2 b set a.createid = 2 where a.id in (b.id)  

到此這篇關於mysql sql常用語句大全的文章就介紹到這了,更多相關mysql sql常用語句內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com