数据表操作
-
创建表
create table 表名(
字段名 类型 约束,
字段名 类型 约束
...
)
例:创建学生表,字段要求如下:
姓名(长度为10)
create table students(
name varchar(10)
)
例:创建学生表,字段要求如下:
姓名(长度为10), 年龄
create table students(
name varchar(10),
age int unsigned
)
例:创建学生表,字段要求如下:
姓名(长度为10), 年龄,身高(保留小数点2位)
create table students(
id int unsigned primary key auto_increment,
name varchar(10),
age int unsigned,
height decimal(5,2)
)
-
删除表
格式一:drop table 表名
格式二:drop table if exists 表名
例:删除学生表
drop table students
或
drop table if exists students

被折叠的 条评论
为什么被折叠?



