In my register I have "06/10/2007 12:41:02" DateTime value, but my query :
SELECT Fecha
FROM dbo.WWW_LIBROVI SITAS_VB
WHERE (Fecha <= '06/10/2007 12:41:02') AND (Fecha >= '05/10/2007')
ORDER BY Fecha DESC
Doesn't return it.
Why? Is not the same date?
Help me please!!!
SELECT Fecha
FROM dbo.WWW_LIBROVI SITAS_VB
WHERE (Fecha <= '06/10/2007 12:41:02') AND (Fecha >= '05/10/2007')
ORDER BY Fecha DESC
Doesn't return it.
Why? Is not the same date?
Help me please!!!
Comment