这我无法理解我的简单大脑。以逗号分隔的订购产品数组被传递给如下过程:
set @array = 'productID_47, productID_4'
select productID, price from Products
where @array like '%' + productID + '%'
返回两条记录。伟大的。但是,如果我有:
set @array = 'productID_47'
select productID, price from Products
where @array like '%' + productID + '%'
同样,返回两条记录,这不是我想要的。遗憾的是,产品代码是固定的。
任何帮助将不胜感激,谢谢