use test 切换到test数据库
create table bbb 创建bbb表格 :
(员工编号 int not null,
姓名 nchar (10) not null,
职位 nchar (10) not null,
工资 money not null)
drop table bbb 吊销 表bbb
alter table bbb add 在表bbb中添加两列表QQ 和 民族
alter table bbb add
民族 nchar (10) not nullle
alter table bbb drop column QQ 删除QQ列 insert into bbb values 在表bbb中插入两个字段
(1,'lily',' 销售员','3000','汉')
insert into bbb values
(2,'赵梁','技术员','3500','回') 结果:
本文出自 “稻草人” 博客,请务必保留此出处http://guoyongyv123.blog.51cto.com/683213/341393