I have the following MySQL that fecthes data from several tables:
SELECT * FROM $wpdb->posts
LEFT JOIN taxi ON ($wpdb->posts.ID = taxi.taxiID)
LEFT JOIN $wpdb->term_relationships ON ($wpdb->posts.ID = $wpdb->term_relationships.object_id)
LEFT JOIN $wpdb->term_taxonomy ON ($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)
WHERE $wpdb->posts.post_status = 'publish'
AND $wpdb->posts.post_type = 'post'
AND $wpdb->posts.post_date < NOW()+INTERVAL 1 DAY
AND $wpdb->term_taxonomy.taxonomy = 'category'
AND $wpdb->term_taxonomy.term_id IN(3)
AND taxi.taxiID IS NULL
AND ($wpdb->postmeta.meta_key = 'EndDate' AND $wpdb->postmeta.meta_value > DATE_ADD(NOW(), INTERVAL 3 HOUR))
As of yesterday, the query is NOT returning any results but here's the kicker: it used to return results all the time for two weeks!
After a lot of trial and error, I've narrowed the problem down to this one line:
AND taxi.taxiID IS NULL
That line is supposed to cause the results to filter to show only those posts that don't have a record in the taxi table.
Can anyone help me figure out how to solve the problem?