开发者

In PSQL how can i insert a date with year month day hour minute and seconds in a table

开发者 https://www.devze.com 2022-12-07 22:48 出处:网络
I have trie this, but is gives ERROR:invalid value "03/12" for "MON" update verificationcodes set date =TO_DATE(\'2023-03-12 23:10:25\',\'YYYY-mon-DD hh24:mi:ss\') where id = 68;

I have trie this, but is gives ERROR: invalid value "03/12" for "MON" update verificationcodes set date =TO_DATE('2023-03-12 23:10:25','YYYY-mon-DD hh24:mi:ss') where id = 68;

can somebody solve this?

i was expecting to开发者_JAVA技巧 work


This is how it is done in Oracle SQL, which I think will work in Postgres as well.

select to_date('12/07/2022 07:08:38 AM','MM/DD/YYYY HH:MI:SS AM') dates
from dual
0

精彩评论

暂无评论...
验证码 换一张
取 消