How would I return a list of rows since a date I specify in SQL Server, here is what I currently have:
select * from SALESTABLE where CREATEDDATETIME
BETWEEN '26/04/2012 00:00:00.00' AND GETDATE()
But this throws an error:
The conversion of a varchar data type to a datetime data type
resulted in an out-of-range value.
that’ll work