where's fields in sql code example
Example 1: where id is in list sql
select * from table where id in (id1,id2.........long list)
Example 2: where query in sql server
SELECT * FROM Customers
WHERE Country='Mexico';
select * from table where id in (id1,id2.........long list)
SELECT * FROM Customers
WHERE Country='Mexico';