我有两张table:
表客户:
ID ---- customerName ------ active
1 ------ Test ------------- true
2 ------ Bla ------------- true
现在,我有了另一个名为configuration的表,我想通过使用row id(来自customer)来更新这个表。
配置表:
ID ------------- row1
1 --------------- 'test'
2 ----------------'xyz'
如何使用customer表中的id来更新配置表?
编辑:我使用的是postgresql,我想将每一个id(从customer表中获得)的行1更新为“blabla”。
所以配置表的输出应该是:
id
5条答案
按热度按时间nhjlsmyf1#
--第1行
1
bbmckpt72#
--“布拉布拉”
2
xe55xuns3#
--“布拉布拉”
有人能帮忙吗?
bkkx9g8r4#
请使用下面的查询,
mf98qq945#
你可以使用适当的连接条件