I seem to be having some difficulty with a fairly easy select statement, and I'm hoping that some other pairs of eyes might be able to help spot what I'm doing wrong.
Here is my select statement:
If I was to remove one of the where conditions (for example: " and Field2 = 2"), the query works, returning the matching records for the remaining where condition. As soon as I add multiple where conditions, it returns nothing.
Any ideas? Thanks in advance.
Here is my select statement:
Code:
Select Field1 from Table1 where Field2 = 1 and Field2 = 2
If I was to remove one of the where conditions (for example: " and Field2 = 2"), the query works, returning the matching records for the remaining where condition. As soon as I add multiple where conditions, it returns nothing.
Any ideas? Thanks in advance.