第十七课 创建表

17.1 创建表

create table temp(
id int not null,
name char(10) ,
age int not null default 20) -- 默认值20

数据类型:

 

 插入数据

insert into temp (id,name,age) values 
(1,'j',12),
(2,'jd',11),
(3,'jdd',22);

 

 

17.2 更改表结构

使用 ALTER TABLE 更改表结构

alter table TEMP
add class char(10)

 

 添加一个列

alter table TEMP
drop class 

 

删除一个列

 

17.3 删除表

drop table temp

 

 

 17.4 重命名表

rename table orders to ooo

 

重命名为ooo 

 

posted @ 2018-03-27 14:50  慢慢来会比较快  阅读(100)  评论(0编辑  收藏  举报