摘要: exec sp_helpconstraint 'test2' --查看表约束alter table test2 drop constraint FK__test2__id__3C69FB99 --删除表约束SQL Server 提供了一些工具来帮助用户实现数据完整性,其中最主要的是:规则(Rule)、缺省值(Default)、约束(Constraint) 和触发器(Trigger)。on delete cascade约束create table dept([ID] nchar(4) not null primary key,[ENAME] nvarchar(4) not null)create 阅读全文
posted @ 2010-12-23 17:33 枫- 阅读(451) 评论(0) 推荐(0)
摘要: http://phprimer.com/ 阅读全文
posted @ 2010-12-23 17:06 枫- 阅读(135) 评论(0) 推荐(0)