如何将字符串类型转换为 hstore 中的日期对象

How to typecast string to date object In hstore

hstore 中迄今为止的类型转换字符串对象

我已经像这样对字符串进行了类型转换 Project.where("(form_data -> '12')::int > 2") 它工作正常但无法像 Project.where("(form_data -> '12-13-10-2016')::date > 22-102016").

这样的日期进行类型转换

它给我错误 ActiveRecord::StatementInvalid: PG::Error: ERROR: schema "date" does not exist

我在这里问的问题得到了答案是解决方案

Project.where("(form_data -> '22-10-2014')::date > to_date('05 Dec 2000', 'DD Mon YYYY')")

我提到了 this