I have tables with a one-to-many relationship
the following selects records that match "any" of the values (...correct?)
simple question:Code:SELECT tblManufacturers.* FROM tblManufacturers WHERE tblManufacturers.Catagory IN (value1,value2,...);
what is the syntax for a select clause that will only select those records where "ALL" of the values are met?
with thanks in advance,
mark


SQL WHERE ... IN selects "any", what selects "all"
Reply With Quote

