After running this query statement with my database:
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
I am able to get back articles sorted based on date with content containing those specified keywords but not within the date range. Can anyone let me know what is wrong with this statement and how to correct it?
Thanks!
Try it.