What's the proper SQL for selecting all records where a specific date field is between 2 dates?
I know I can accomplish it using a long 'where' statement... but want to use 'between'
Select*
from table
where table.completed_date between '01/02/02' and '04/01/02';
Doesn't seem to work,
Help!
I know I can accomplish it using a long 'where' statement... but want to use 'between'
Select*
from table
where table.completed_date between '01/02/02' and '04/01/02';
Doesn't seem to work,
Help!