首页 > 数据库技术 > 详细

常用SQL语句

时间:2016-06-16 19:47:12      阅读:137      评论:0      收藏:0      [点我收藏+]

1.创建唯一索引

create unique index activityConfigDetail_ConfigIdPageLocation
on activityConfigDetail(ConfigId,PageLocation)

2.创建普通索引

create  index activityConfigDetail_ConfigIdPageLocation
on activityConfigDetail(ConfigId,PageLocation)

 

3.更改列的类型

alter table [dbo].[ActivityConfigInfo]
alter column [DayPrjMin] int null

 

4.删除约束

alter table [dbo].[ActivityConfigInfo]
drop constraint DF__ActivityC__DayPr__7325FEFD

 

5.添加字段

alter table [dbo].[ActivityConfigInfo]
add [DayPrjMin] int null

常用SQL语句

原文:http://www.cnblogs.com/zhshlimi/p/5591696.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!