0

我需要从查询中排除一些记录,其中日期名称设置在排除值“excl_days”中。

简单的功能正在工作:

SELECT post_id, start, end, excl_days FROM `mytable_events` 
WHERE `excl_days` NOT LIKE '%".$today_name."%' 
ORDER BY DATE(start) DESC

但是使用 JOIN 和 GROUP 在添加 NOT LIKE 后我的结果为空。没有 NOT LIKE 一切正常。

SELECT o1.post_id, o1.start, o1.end, o1.excl_days 
FROM `mytable_events` o1 
JOIN `mytable_posts` o2 ON o1.post_id = o2.ID 
WHERE `o1.excl_days` NOT LIKE '%".$today_name."%'
GROUP BY o1.post_id ORDER BY DATE(o1.start) DESC

完整的查询是:

SELECT o1.post_id, o1.start, o1.end, o1.excl_days 
FROM `mytable_events` o1 
JOIN `mytable_posts` o2 ON o1.post_id = o2.ID 
WHERE DATE(o1.start) <= '".$today."' AND DATE(o1.end) >= '".$today."'
AND o2.post_type = 'events' AND o2.post_status = 'publish' 
AND `o1.excl_days` NOT LIKE '%".$today_name."%'
GROUP BY o1.post_id ORDER BY DATE(o1.start) DESC

如何使它工作?谢谢你的帮助。

4

2 回答 2

1

试试这个:

  SELECT o1.post_id, o1.start, o1.end, o1.excl_days 
  FROM `mytable_events` o1 
  JOIN `mytable_posts` o2 ON (o1.post_id = o2.ID 
  AND o1.excl_days NOT LIKE '%".$today_name."%')
  GROUP BY o1.post_id ORDER BY DATE(o1.start) DESC
于 2013-03-12T14:29:25.317 回答
0

尝试去掉 where 子句中的反引号。它们是不必要的,也没有正确形成。

SELECT o1.post_id, o1.start, o1.end, o1.excl_days 
FROM `honchar_events` o1 
JOIN `honchar_posts` o2 ON o1.post_id = o2.ID 
WHERE o1.excl_days NOT LIKE '%".$today_name."%'
GROUP BY o1.post_id ORDER BY DATE(o1.start) DESC
于 2013-03-12T14:27:59.127 回答