将月份和日期值添加到仅包含年份psql的属性

时间:2016-12-03 05:22:06

标签: sql postgresql date to-char

现在我的日期看起来像这种格式(date2来自table2)

 +1999
 +1999
 -0700
 -0480

我希望它们看起来像(插入表格中的creationdate)

1999/12/31
1999/12/31
-700/12/31
-480/12/31

这是我迄今为止最好的尝试(numid和accnum只是为了找到记录匹配的地方)

update table set creationdate = to_date('1231'||(to_char((select datecreated from table2 m, table n where m.accnum = n.numid), 'sg9999')),'MMDDSGYYYY');

0 个答案:

没有答案