2022年8月

update dr_goods g set g.shop_numbering=sys_user.user_name from sys_user where g.shopid=sys_user.user_id

方法一:
update 表A set 表A.编号=表B.编号 from 表B where 表A.id=表B.id

方法二:
update 表A set 表A.编号=表B.编号 from 表A,表B where 表A.id=表B.