字符串与日期字段比较

时间:2016-06-08 09:41:34

标签: sql

在表格中Date字段的类型为date,我将2个日期fromto作为字符串。

我想过滤这两个日期之间存在的重新记录。

选择

的最佳方法是什么

1 个答案:

答案 0 :(得分:0)

最好的方法是使用DBMS提供的转换函数将字符串日期转换为日期

例如,使用Oracle,我会写:

where 
your_date_field 
   between to_date(from,format_of_from) and to_date(to,format_of_to)