-1
我有List myint = new List();如何在Ms sql服務器中選擇多個記錄
我想選擇多個類似的productid = 1的productid = 2
如何選擇使用MS SQL Server的多種產品
select * from product where ProductId = 1,2
我有List myint = new List();如何在Ms sql服務器中選擇多個記錄
我想選擇多個類似的productid = 1的productid = 2
如何選擇使用MS SQL Server的多種產品
select * from product where ProductId = 1,2
select * from product where ProductId in(1,2)
你可以寫在此查詢兩種方式,
SELECT * FROM Products
WHERE ProductID IN (1,2)
或
SELECT * FROM Products
WHERE ProductID = 1
OR ProductID = 2
您正在使用什麼版本的SQL Server?它是什麼類型的應用程序? '.net'? –