Hi,
I have the following query:
select * from table_A
WHERE CONVERT(VARCHAR(10),DEPARTURE_DATE,110) = '02-28-2014' . This works just fine.
But when I run the query like thiS:
WHERE CONVERT(VARCHAR(10),FDL.DEPARTURE_DATE,110) between '02-28-2014' AND '03/05/2014'. It gives me values of 2009 year. Can you explain whats the difference here?