如何在日期为字符串时按日期选择条目?

时间:2013-12-12 12:04:30

标签: sql postgresql date

我想执行带日期范围的数据库查询。问题:DB中的date是一个字符串,否则我会写:

from TimeTable where date between '2012-06-13' and '2012-06-15'

如何在String date类型上执行此类操作?

1 个答案:

答案 0 :(得分:1)

尝试to_timestamp
to_timestamp函数也可以使用单个双精度参数将Unix纪元转换为带时区的时间戳。 (整数Unix时期被隐式转换为双精度。)
例如:to_timestamp('05 Dec 2000', 'DD Mon YYYY');
阅读 Documentation