Mysql的常用語句之DDL語句
阿新 • • 發佈:2019-01-28
我也是新手,一起學習,一起進步;【文件內容來自學習的書籍等】
連線資料庫
mysql -u使用者名稱 -p
建立資料庫
create database 資料庫名;
檢視資料庫
show databases;
使用或切換資料庫
use 資料庫名;
檢視當前資料庫的所有表
show tables;
刪除資料庫,慎用
drop database 資料庫名;
建立表
create table 表名(
name1 type constraints,
name2 type constraints,
name3 type constraints
)
查看錶結構
desc 表名;
查看錶建立的建立語句
show create table 表名;
刪除表,謹慎
drop table 表名;
修改欄位的型別
alter table 表名 modify 欄位 新型別;
增加表字段
alter table 表名 add column 列名 型別 約束;
刪除表字段
alter table 表名 drop column 列名;
修改欄位名稱
alter table 表名 change 舊列名 新列名 新型別;
控制新增的列名在某列之後
alter table 表名 add 新列名 after 舊列名;
修改已存在的列的順序
alter table 表名 modify 列名 first;
修改表名稱
alter table 表名 rename 新表名;