知数堂Mysql实战优化班19
1、 创建表:create table 表名(字段名 类型 约束)
create table student(
id int UNSIGNED PRIMARY KEY auto_increment,
name VARCHAR(10), # 表示长度是10
age int UNSIGNED, #表示无符号
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)
)
共有 0 条评论