相关文章推荐
暴走的小熊猫  ·  postgresql pivot - CSDN文库·  2 周前    · 
英俊的红酒  ·  Docker M1 ...·  4 月前    · 
年轻有为的熊猫  ·  <textarea>: The ...·  5 月前    · 
腼腆的针织衫  ·  DeepSpeed-Chat ...·  7 月前    · 
坐怀不乱的丝瓜  ·  C++ JSON处理库 ...·  1 年前    · 

报错如下:

SQL Error [22007]: ERROR: invalid input syntax for type timestamp with time zone: ""
Position: 33
org.postgresql.util.PSQLException: ERROR: invalid input syntax for type timestamp with time zone: ""
Position: 33

由于coalesce()要求输入参数是null或字符串,而now()返回的结果是带有时区的时间戳,所以就会报错;需要把时间戳转换成字符串才可以,如下所示:

select COALESCE(null,null,now()||'',''); 
select COALESCE(null,null,now()::varchar,'');
 *                 .-~~~~~~~~~-._       _.-~~~~~~~~~-.
 *             __.'  欢迎访问    ~.   .~              `.__
 *           .'//  我的个人博客    \./   ☞ lewky.cn ☜   \\`.
 *         .'//                     |                     \\`.
 *       .'// .-~"""""""~~~~-._     |     _,-~~~~"""""""~-. \\`.
 *     .'//.-"                 `-.  |  .-'                 "-.\\`.
 *   .'//______.============-..   \ | /   ..-============.______\\`.
 * .'______________________________\|/______________________________`.