TomBarrand
Programmer
Hi,
I have the following SQL and would like to add an extra WHERE clause that would display records that were between two dates, any ideas about how I would do this?
SELECT TSDate, EmployeeName, Period, WorkType
FROM timesheet_Lines_tbl
WHERE Period <> 'NCR'
ORDER BY WorkType, EmployeeName
Cheers,
Tom
I have the following SQL and would like to add an extra WHERE clause that would display records that were between two dates, any ideas about how I would do this?
SELECT TSDate, EmployeeName, Period, WorkType
FROM timesheet_Lines_tbl
WHERE Period <> 'NCR'
ORDER BY WorkType, EmployeeName
Cheers,
Tom