資料庫MSQL語句

2021-08-28 22:46:29 字數 565 閱讀 5771

1丶資料庫操作

// 建立資料庫create xd 資料庫名;

// 檢視資料庫show xd;

// 更改資料庫資訊 alter xd 資料庫名 [character set 字符集];

// 刪除資料庫drop xd 資料庫名;drop xd [if exists] 資料庫名;

// 進入乙個資料庫use 資料庫名;

// 檢視當前資料庫select xd();

2丶表操作

// 檢視資料庫中的所有表show biao;

// 檢視表的建立資訊show create biao表名;

// 檢視表結構desc 表名;

// 全稱 describe 表名;show columns from 表名;

// 修改表名rename biao 修改的表名 to 新錶名

// 新增欄位alter biao 表名 add 欄位名 限制條件, add 欄位名 限制條件;

// 刪除乙個欄位alter biao 表名 drop 字段;

// 刪除主鍵akter biao 表名 drop primary key

msql資料庫分割槽

一 為什麼要進行分割槽 partition 需求 大資料。解決辦法 分而治之。將大表和大資料分為更小的操作單元。在mysql中允許將表 索引和索引編排分為索引編排表細分為更小的單元。分割槽後,每個分割槽有自己單獨的名稱。對於dba來講,這些分割槽可以統一管理,也可以分開管理。但是對於應用程式來講,分...

MSQL資料庫檢索優化

mysql的優化是非常重要的.其他最常用也最需要優化的就是limit.mysql的limit給分頁帶來了極大的方便,但資料量一大的時候,limit的效能就急劇下降.同樣是取10條資料 select from yanxue8 visit limit 10000,10 和 select from yan...

資料庫語句

1.case,when,else小例子 selecte as x case when then good else bad as from table 比如 select case when highercode 1 then 省會 else 不知道 end as detail code as 地區...