Please is it possible to have two where statement in an sql query? for example:
SELECT * FROM Persons WHERE FirstName='Peter'
but I want another condition which will also pass the query like:
SELECT * FROM Persons WHERE house='duplex' or car='Honda'
Is the second query correct if not how do I write it?
Thanks