sql语句冷门使用技巧


数据库中存储的是时间,如何快速筛选某一天的数据

created_date
2024-10-11 19:47:55
2024-10-11 19:47:55
2024-10-11 19:47:55
2024-10-11 19:48:55

如何查询 2024-10-11 的数据

select created_date,SUBSTRING(created_date, 1, 10)
from vxlink_registration_server.tc_case_transaction tct
where SUBSTRING(created_date, 1, 10) = '2024-10-11';

这种字符串还能用于范围查询,大于、小于都可以。


评论