Jump to content

Problem with getting records between two dates


jbpunjabi

Recommended Posts

Select

item_id,

customer_name,

DATE_FORMAT(picked_up_date,\'%D %M, %Y\' pickedUp_date

from

jb_inventory

where

(picked_up_date >=1/3/2002 and picked_up_date<=6/3/2003)

and

is_picked_up=\'Y\'

order by

ticket_id

 

I am trying to get al the records between 1/3/2002 and 6/3/2003. But this query is giving me nothing and if I change the \'and\' to \'or\' then it gives me all the records..

 

any help !!!!!

I worked, I put the date in quotes and used the date format function to change the database date

 

Select

item_id,

customer_name

from

jb_inventory

where

(DATE_FORMAT(picked_up_date,\'%c/%e/%Y\') >=\'1/9/2002\'

and

DATE_FORMAT(picked_up_date,\'%c/%e/%Y\') <=\'6/4/2003\')

and

is_picked_up=\'Y\'

order by

ticket_id

 

Thanks effigy

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.