使用我的数据库运行此查询语句后:
select * from articles
where content like 'keyword1' or content like
keyword2' or content like 'keyword3' and date
between '2012-06-18 00:00:00' and '2012-06-25 23:59:59'
order by date asc
我能够取回基于日期排序的文章,其内容包含那些指定的关键字但不在日期范围内。谁能让我知道这个陈述有什么问题以及如何纠正它?
谢谢!