如何以下列格式查找特定日期的结果: 2015-09-05 在具有以下格式的日期时间列的表中 2015-09-05 13: 0点39分
答案 0 :(得分:1)
使用DATE
功能。它将字符串值解析为DATETIME,然后提取日期。
答案 1 :(得分:1)
select * from your_table where date(dt_col) = '2015-09-05'
或使用索引使用
select * from your_table
where dt_col >= '2015-09-05'
and dt_col < '2015-09-06'