Fight With Me!!!

导航

2014年12月9日 #

sqlserver列重命名

摘要: EXECsp_rename'tablename.[OldFieldName]','NewFieldName','COLUMN' 阅读全文

posted @ 2014-12-09 19:25 nickTimer 阅读(281) 评论(0) 推荐(0) 编辑

动态sql语句基本语法

摘要: 1 :普通SQL语句可以用Exec执行 eg: Select * from tableName Exec('select * from tableName') Exec sp_executesql N'select * from tableName' -- 请注意字符串前一定要加N 2:字段名,表... 阅读全文

posted @ 2014-12-09 18:58 nickTimer 阅读(172) 评论(0) 推荐(0) 编辑

跨越数据库操作时注意要加dbo

摘要: 跨越数据库操作时注意要加dboinsert into hrdb.dbo.TB_B_PROJECTS :这样是正确的insert into hrdb.TB_B_PROJECTS :这样是错误的 阅读全文

posted @ 2014-12-09 16:27 nickTimer 阅读(216) 评论(0) 推荐(0) 编辑

sql查询分析器中显示行号

摘要: -- 工具-> -- 选项-> -- 文本编辑器-> -- 所有语言-> -- 常规-> --显示-> --行号 阅读全文

posted @ 2014-12-09 16:15 nickTimer 阅读(286) 评论(0) 推荐(0) 编辑