vote up 1 vote down star

I have a query for getting today's records from table. I have inserted the date field by using now().

select u.*,p.* from user_brands as u inner join products as p where u.parent_id = p.cat_id and date_format( p.date, '%Y-%m-%d' ) = curdate( )

By using this query every first time I am getting empty results, once if I refresh the page I am getting the results. Why is it not returning values for the first time?

flag

73% accept rate

2 Answers

vote up 1 vote down check

A simpler version is to use condition DATE(p.date) = CURDATE(). As for the empty first set, no idea. You mention that you refresh a page, does your query work in mysql command line or other non-web browser interface?

link|flag
vote up 0 vote down

try with this query:

select u.*,p.* from user_brands as u inner join products as p where u.parent_id = p.cat_id and YEAR(p.date) = YEAR(now()) and MONTH(p.date) = MONTH(now()) and DAY(p.date) = DAY(now())
link|flag
Thanks. Your code is working fine. But my doubt is why i am getting the empty result set first time when im using date_format = curdate() – paulrajj Aug 26 at 15:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.