0
我需要更新表中的多個行。Postgres更新多行
我有表customer
和contact
我需要更新customer
其中在contact
表中的鏈接接觸具有一定值的列city
。 我能得到我需要與此查詢
Select cus.id, con.city
from customer cus, contact con
where cus.contacts_id=con.id
and con.city="MyValue"
我知道如何更新一個表,但是不知道如何更新表時,行是從不同的表中查找行。
'和con.city = 「myvalue的」'會導致錯誤,除非你有一個名爲列'某處MyValue'。字符串常量需要用SQL中的單引號引起來。 –