摘要:
if object_id('tb')is not null drop table tbGocreate table tb(姓名 varchar(10),课程 varchar(10),分数 int)insert into tb values('张三','语文',74)insert into tb va 阅读全文
摘要:
1.查看SQL语句IO消耗 set statistics io on sql 语句 set statistics io off 2.查看SQL语句时间消耗 set statistics time on sql 语句set statistics time off 3.查看SQL语句索引消耗 set s 阅读全文
摘要:
Office Professional Plus 2013 64位简体中文版文件名: cn_office_professional_plus_2013_x64_dvd_1134006.iso语言: Chinese – SimplifiedSHA1:adb8d9d3095638f25e9df2e708 阅读全文
摘要:
Sql Server 中使用case when then 判断某字段是否为null,和判断是否为字符或数字时的写法不一样,而且语法能正常执行, 如果不注意数据内容,很容易搞错。 错误方法:CASE columnName WHEN null THEN 0 ELSE columnName END正确方法 阅读全文