1. 程式人生 > >表的刪除和修改

表的刪除和修改

bsp spa -s har ont 屬性 sco 一個 log

表的修改操作:

alter table score add type nchar(1) null //為score表新添加一個屬性type,屬性值為 type nchar(1) null

alter table score alter column type nchar(2) //修改score表的type屬性的類型為nchar(2)

alter table score add check (type in (‘選修‘,‘重修‘,‘必修‘)) //為score表的type屬性添加一個限定的選項範圍

alter table score drop column type//刪除score表中的type屬性

表的刪除操作:

drop table student

表的刪除和修改