码迷,mamicode.com
首页 > 其他好文 > 详细

表的删除和修改

时间:2018-02-19 21:50:27      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:table   范围   alt   add   har   div   column   type属性   tab   

表的修改操作:

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

 

表的删除和修改

标签:table   范围   alt   add   har   div   column   type属性   tab   

原文地址:https://www.cnblogs.com/Stakes-ds/p/8454446.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!