共计 685 个字符,预计需要花费 2 分钟才能阅读完成。
导读 | 针对一个上线的项目进行数据库优化,以便后期统计,遇到一个数据填充的问题,在此记录一下,各位如果也有这种问题,欢迎一起交流。 |
表结构:
当我从其它数据源使用 sql 来填充这个表数据时,from_id 都是 null,因此要使用 update 来对 from_id 进行补充。
update t_ch_test t set t.from_id =
(select max(a.id) from t_ch_test a where a.node_id = t.node_id and a.id
使用 update select 来自连接进行更新操作。这个 sql 在 oracle 中执行是没有任何问题的,然后,坑爹的是,这个 sql 在 postgresql 中编译都报错。而我们项目组用的最多的就是 postgresql,因此无语了。
后来百度一下,发现 postgresql 在 update 时不支持表别名 alis,所以最开始想的是把别名去掉,如下:
update t_ch_test set from_id =
(select max(a.id) from t_ch_test a where a.node_id = node_id and a.id
sql 执行是没有问题了,但一查结果,发现 from_id 全部为 null,怎么回事儿呢。
后来在同事的指导下,a.id
update t_ch_test set from_id =
(select max(a.id) from t_ch_test a where a.node_id = t_ch_test.node_id and a.id
终于成功了。
正文完
星哥玩云-微信公众号