postgres 更新一个表的字段值等于另一个表的字段值

本文介绍了在PostgreSQL中进行表更新时如何正确使用别名,特别是强调了被更新的表通常不使用别名,而查询的表才需要。示例SQL展示了在多表连接查询中,通过别名有效定位并更新特定记录的方法,适用于需要在多个关联表间操作的数据维护场景。
摘要由CSDN通过智能技术生成

PostgreSql表更新时,两个表只允许一个表起别名,一般是被更新的表不起别名,查询的表起别名

SQL的寫法是:

update t_check_task_video_backup
set car_number = t_check_logistics_trailer.license_number
from t_check_order as t_check_order , t_check_logistics_trailer as t_check_logistics_trailer, t_check_nvr as t_check_nvr
where t_check_task_video_backup.task_id = t_check_order.id
and t_check_order.trailer_id =t_check_logistics_trailer.id
and  t_check_logistics_trailer.nvr_id = t_check_nvr.id
and t_check_task_video_backup.download_path is null 

這樣就可以了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值