Viewing 2 posts - 1 through 2 (of 2 total)
Thanks for the quick replies! Both of these methods work well.
However, in some cases the T-SQL statement returns a 'Disabled' value. Is there a way to...
December 4, 2003 at 6:56 am
#484590
If you're just trying to get the current day's records from a date/time field, this seems to work well:
select * from SVC05000
where left(RETUDATE, 10) = left(getdate(), 10)
July 29, 2003 at 7:48 am
#467485