摘要:
1 、普通SQL语句可以用Exec执行eg: Select * from tableName Exec('select * from tableName') Exec sp_executesql N'select * from tableName' -- 请注意字符串前一定要加N 2、字段名,表名,数据库名之类作为变量时,必须用动态SQLeg: declare @fname varchar(20)... 阅读全文
posted @ 2007-04-17 13:55 Bobby 阅读(1235) 评论(0) 推荐(1)