sql date today manually? code example
Example 1: sql display today's date
SELECT getdate()
Example 2: how to retrive the today date sql
select * from datetimes
where dtm >= cast((now()) as date)
and dtm < cast((now() + interval 1 day) as date)
;