📜  如何检索今天的日期sql代码示例

📅  最后修改于: 2022-03-11 15:04:57.631000             🧑  作者: Mango

代码示例1
select * from datetimes 
where dtm >= cast((now()) as date)
and dtm < cast((now() + interval 1 day) as date)
;