Hi,
Is it possible to set up an SQL query to have multiple LIKE statements? for example, this is the code I have
strCode = 'A1001'
Select *
FROM Products
WHERE Code LIKE strCode
so if I wanted to pull say three different codes out of the data base how would it be possible? for example, 'A1001' and 'A2002' etc....
The data for each one found would then be put into a table.
Thanks, I hope this makes sense,
Dan
=|:|
Is it possible to set up an SQL query to have multiple LIKE statements? for example, this is the code I have
strCode = 'A1001'
Select *
FROM Products
WHERE Code LIKE strCode
so if I wanted to pull say three different codes out of the data base how would it be possible? for example, 'A1001' and 'A2002' etc....
The data for each one found would then be put into a table.
Thanks, I hope this makes sense,
Dan
=|:|