1
我得到這個錯誤的一部分,當我嘗試更新表1的列就是喜歡錶的列2Update語句:錯誤:目標表必須是等值連接謂詞
目標表必須的一部分一個equijoin謂詞。如下圖所示
update test
set category = t1.category
from category_type t1, test t2
where t2.link ilike '%' || t1.type || '%'
and t2.link ilike '%.nike.com/%';
Category_Type表:
type category
sandals shoes
boots shoes
t-shirts apparel
-pants apparel
非常感謝您! – onlinetravel
試過了。但我仍然得到一個錯誤:關係「t1」不存在。 更新臨時設置類別=從t1.category ( 選擇c.category,從category_type C,溫度噸 其中t.link ILIKE '%' || || c.type '%' 和T1 t.link .link ilike'%.nike.com /%' )t1 其中temp.link = t1.link; – onlinetravel
我會試着想出一個我可以在集羣上運行的例子。 – systemjack