hi,
ok i have a database in access and i need an sql statement, that does something like this:
Select * from categories where categoryID = 6, 8, 35, 36, 123 etc
is this possible, i dont really know how to do it.
Please help
many thanks
Printable View
hi,
ok i have a database in access and i need an sql statement, that does something like this:
Select * from categories where categoryID = 6, 8, 35, 36, 123 etc
is this possible, i dont really know how to do it.
Please help
many thanks
Select * from categories where categoryID in ( 6, 8, 35, 36, 123 )