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