1撒轮、 創(chuàng)建表:create table 表名(字段名 類型 約束)
? ? ? ? ? ? create table student(
? ? ? ? ? ? id int UNSIGNED PRIMARY KEY auto_increment,
? ? ? ? ? ? name VARCHAR(10),? # 表示長(zhǎng)度是10
? ? ? ? ? ? age int UNSIGNED,? ? #表示無符號(hào)
? ? ? ? ? ? height decimal(5,2)
? ? ? ? ? ? )
? ? ? ? 2浓冒、 刪除表:drop table if exists 表名
? ? ? ? ? ? 每條sql語句后要有;隔開颗圣,最后一條sql后面不用加离熏;
? ? ? ? ? ? drop table if exists student;
? ? ? ? ? ? create table student(
? ? ? ? ? ? id int UNSIGNED PRIMARY KEY auto_increment,
? ? ? ? ? ? name VARCHAR(10),
? ? ? ? ? ? age int UNSIGNED,
? ? ? ? ? ? height decimal(5,2)
? ? ? ? ? ? )