Jump to content

[SOLVED] what is wrong with this query (help)


Lijoyx

Recommended Posts

hai folks,

 

i have a table and i update data everyday. now i want to take the product which is new.(ie product entered in the max date - date entered in the last day(say 2008-07-20)

 

 SELECT *
FROM all_product_details
WHERE Product_Id NOT IN (
SELECT Product_Id
FROM all_product_details
WHERE Date_Of_Feed = 2008 -07 -20 )
AND Date_Of_Feed = (
SELECT MAX( Date_Of_Feed )
FROM all_product_details ) 

 

 

now what is wrong with this code.

it doesn't show any error but its not showing the results.

 

 

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.