更新時(shí)間:2017-07-27 來源:黑馬程序員PHP培訓(xùn)學(xué)院 瀏覽量:
1、 創(chuàng)建表的語法
Create table 表名(
字段名 數(shù)據(jù)類型 [null|not null] [default] [auto_increment] [primary key],
字段名 數(shù)據(jù)類型
)charset =字符編碼
2、 數(shù)據(jù)類型
a) bigint
b) Int
c) smllint
d) tinyint
e) char 定長
f) varchar 可變長度
g) text 大段文本
3、 顯示創(chuàng)建表的語法
a) Show create table 表名 [\G]
4、 顯示所有表
a) Show tables
4、 刪除表
a) Drop table 表名
b) Drop table 表1,表2,表3