pgsql update select 查询并更新数据

复制代码
with t as (select id,
                  birthday,
                  identification,
                  substring(identification, 7, 8),
                  concat_ws('-', substring(substring(identification, 7, 8), 1, 4),
                            substring(substring(identification, 7, 8), 5, 2),
                            substring(substring(identification, 7, 8), 7, 2)
                      ) as a
           from app_public.users
           where
               identification is not null
               and
               identification != ''
           )
UPDATE app_public.users t1
SET birthday = t.a
FROM t
WHERE t1.id = t.id;

-- select * -- from t;

相关推荐
忘记9263 分钟前
mybatis是什么
数据库·oracle·mybatis
q***92516 分钟前
Springboot3 Mybatis-plus 3.5.9
数据库·oracle·mybatis
q***474328 分钟前
PostgreSQL 中进行数据导入和导出
大数据·数据库·postgresql
TDengine (老段)1 小时前
MySQL/PG/TDengine 时间范围 SQL 表达式
sql·mysql·tdengine
傻啦嘿哟1 小时前
物流爬虫实战:某丰快递信息实时追踪技术全解析
java·开发语言·数据库
optimistic_chen1 小时前
【Redis 系列】Redis详解
linux·数据库·redis·缓存·xsheel
熊文豪1 小时前
17年稳定运行:金仓数据库如何成为电力行业的“数字基石“
数据库·kingbasees·金仓数据库·电科金仓·kes
r***11331 小时前
Redis--模糊查询--方法实例
数据库·redis·缓存
q***71011 小时前
SQL注入(SQL Injection)攻击原理与防御措施
数据库·sql·oracle
f***R81 小时前
解决bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException
java·数据库·sql