編輯:使用另一種分隔符,並在請求指定它提供了一個解決方案的API開發人員(見我的回答如下,以我自己的問題) 我發送POST請求到一個RESTful API,這需要論據逗號分隔的列表: var request = require('request-promise'); //promisified npm request
// the list of names is huge
//
我的代碼: declare @text as nvarchar(max)
set @text=N'''ABC'',''XYZ'',''MNO'',''PQR'''
print @text
select * from table where column in(@text) --Line1
select * from table where column in('ABC','XYZ','MN