Can I have some SQL tech support please?

Aug 09, 2006 16:49

I'll start with a disclaimer: I am not very good at SQL. I don't use it much.

So, can anyone tell me why the following query isn't working?

USE [DATABASE]
GO

SELECT *
FROM [TABLE]
WHERE [DATETIME FIELD] BETWEEN [FIRST DATE] AND [LAST DATE]
GO

SQL accepts and runs the query but brings back zero results even though I know there are records that should fall into the range. I note that the display of the datetime field in Enterprise Manager is dd/mm/yyyy and that in a Query Result Pane it is yyyy-mm-dd. I have tried both of these, but no success. The exact same query runs fine on a numeric field, so my syntax is OK. What am I doing wrong?
Previous post Next post
Up