I have two different search forms, one is meant to find books only, the other to find media. So for the media form there is only one extra field. For some reason, with this extra field, I get no results...
Query for books (works fine)
SELECT * FROM SearchActive Where title LIKE '%::title::%' AND author LIKE '%::author::%' AND subject LIKE '%::subject::%'
Query for media (returns no results)
SELECT * FROM SearchActive Where title LIKE '%::title::%' AND author LIKE '%::author::%' AND subject LIKE '%::subject::%' AND imgwhoorwhat='%::imgwhoorwhat::%'
Thanks
Query for books (works fine)
SELECT * FROM SearchActive Where title LIKE '%::title::%' AND author LIKE '%::author::%' AND subject LIKE '%::subject::%'
Query for media (returns no results)
SELECT * FROM SearchActive Where title LIKE '%::title::%' AND author LIKE '%::author::%' AND subject LIKE '%::subject::%' AND imgwhoorwhat='%::imgwhoorwhat::%'
Thanks