我正在尝试使用以下SQL命令将日期存储在Postgres表中
update card_order set valid_until = to_date('23/12/17,Σαβ 11:00πμ', 'YYYY-MM-DD,Day HH:MIa');
但是我得到了错误:
ERROR: invalid value "Σαβ 11" for "Day"
DETAIL: The given value did not match any of the allowed values for this field.
我已经用...设置了数据库
答案 0 :(得分:2)
您需要将lc_time
设置为希腊语言环境,并像TM
一样使用TMDY
修饰符。
但这仍然无济于事,因为正如the documentation所说:
to_timestamp
和to_date
忽略TM
修饰符。