Hello,
I have a select statement
this is failing to return the record I want, yet if i change the 1=1 to anything else i.e. Genre='DNB', the select works fine.
there are only 66 records in the table and only 10 columns of which i'm only selecting 8, so the data being retrieved is fairly small, so why is the select using 1=1 causing such a problem?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
I have a select statement
SELECT CatNo,FileID,Artist,Style,Title,Genre,IsNew FROM Singles WHERE 1=1 ORDER BY CatNo DESC
this is failing to return the record I want, yet if i change the 1=1 to anything else i.e. Genre='DNB', the select works fine.
there are only 66 records in the table and only 10 columns of which i'm only selecting 8, so the data being retrieved is fairly small, so why is the select using 1=1 causing such a problem?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.