I have a column (JoinDate) which stores data in DateTime data type. How can I compare values in the column which range of dates? I tried the following, but didn’t return me any records
SELECT FistName, LastName
FROM TableName
WHERE JoinDate BETWEEN #1/1/2002# AND #01/10/2001#
What am I doing wrong
SELECT FistName, LastName
FROM TableName
WHERE JoinDate BETWEEN #1/1/2002# AND #01/10/2001#
What am I doing wrong