Stuart Felenstein wrote:
[...]
But if in the where statment I add:

where School = Columbia and School = Stamford
Nothing is returned

The WHERE clause describes EACH of the rows you get in the result. No one row can have a value in the School column equal to "Columbia" AND "Stamford" at the same time. You should use OR instead of AND.


--
Roger


-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]



Reply via email to