易忘札记
时间:2011-03-30 来源:烟雨中闲置
外键约束
alter table 表名 add constraint 约束名 foreign key (你的外键) references (表名)(字段名);
sql数据库时间查询代码
第一种
set statistics time on
--sql 执行 语句
set statistics time off
第二种
declare @dt datetime
set @dt=getdate()
--sql 执行语句
select [执行时间(ms)]=datediff(ms,@dt,getdate())
相关阅读 更多 +