2014年1月27日

在 sql server 查询子句中 , 把 in 的目标参数化

摘要: 例如以下的sql语句select * from Tags where Name in('ruby','rails','scruffy','rubyonrails')写成这样, 编译不通过declare @nameList nvarchar(100)select @nameList = 'aaa,bbb,ccc,ddd'select * from Tags where Name in @nameList如果还是想简单的传入一个字符串代表 in 的目标 , 可以:一 : 先建一个函数 , split传入的参数 , 存到 阅读全文

posted @ 2014-01-27 16:39 齐文宣 阅读(1742) 评论(0) 推荐(0)

导航