I am trying to run the query :
In the table, Payment_Date is stored as default value getdate(). The above query results in the records for '08/06/2002' only, even if the records are present for '08/07/2002'. This problem is probably due to the format in which date is stored. Here date is stored along with time.
Pl tell me the work around so that when dates are compared, time is ignored.
Pl tell me a function available in SQl which only give date minus time from a field stored as GetDate().
Thanks. Waiting for ur reply.
Code:
SELECT Payment_Date
FROM dbo.tbl_PaymentDt
WHERE Payment_Date BETWEEN '08/06/2002' AND
'08/07/2002'
In the table, Payment_Date is stored as default value getdate(). The above query results in the records for '08/06/2002' only, even if the records are present for '08/07/2002'. This problem is probably due to the format in which date is stored. Here date is stored along with time.
Pl tell me the work around so that when dates are compared, time is ignored.
Pl tell me a function available in SQl which only give date minus time from a field stored as GetDate().
Thanks. Waiting for ur reply.