I can't figure out why I can't put this simple condition in to the SQL below in WHERE clause.
AND Attribs.Descriptor ='A'
"SELECT DISTINCTROW Items.* FROM Items INNER JOIN Attribs ON Items.ImageID = Attribs.ImageID WHERE Items.deleted <> 1 AND Attribs.Descriptor ='BND' ORDER BY Items.Priority, Items.ImageID"
I don't get any result if I add " AND Attribs.Descriptor ='A' " although the date exists.
What am I missing?
Start Free Trial