标签: sql postgresql
如何在Postgress sql中从午夜到现在获取所有记录
答案 0 :(得分:0)
例如:
select * from your_table where date between now()::date and now();
现在()::日期
将当前时间戳舍入到午夜。