摘要: 在存储过程中经常需要执行程序组成的SQL语句,可以使用exec(@sql),也可以使用exec sp_executesql @sql。但使用sp_executesql要优于exec,建议使用 sp_executesql 而不要使用 EXECUTE 语句执行字符串。支持参数替换不仅使 sp_executesql 比 EXECUTE 更通用,而且 还使 sp_executesql 更有效,因为它... 阅读全文
posted @ 2007-05-21 13:13 Yoshow 阅读(1309) 评论(0) 推荐(0) 编辑
摘要: 值类型 默认值 bool false byte 0 char '0' decimal 0.0M double 0.0D enum 表达式 (E)0 产生的值,其中 E 为 enum 标识符。 float 0.0F int 0 long 0L sbyte 0 short 0 struct... 阅读全文
posted @ 2007-05-21 13:11 Yoshow 阅读(700) 评论(0) 推荐(0) 编辑