how to retrive the today date sql

Solutions on MaxInterview for how to retrive the today date sql by the best coders in the world

showing results for - "how to retrive the today date sql"
Celian
06 Jan 2018
1select * from datetimes 
2where dtm >= cast((now()) as date)
3and dtm < cast((now() + interval 1 day) as date)
4;
5