标签: sql
在表格中Date字段的类型为date,我将2个日期from和to作为字符串。
Date
date
from
to
我想过滤这两个日期之间存在的重新记录。
选择
答案 0 :(得分:0)
最好的方法是使用DBMS提供的转换函数将字符串日期转换为日期
例如,使用Oracle,我会写:
where your_date_field between to_date(from,format_of_from) and to_date(to,format_of_to)