postgrsql update, 给指定字段批量加前缀
侧边栏壁纸
  • 累计撰写 50 篇文章
  • 累计收到 0 条评论

postgrsql update, 给指定字段批量加前缀

admin
2022-09-06 / 0 评论 / 291 阅读 / 正在检测是否收录...

使用||连接

update user_accounts set principal = ('2022-09-06-' || principal) where user_id NOT IN (select id from users) ;
0

评论 (0)

取消