我有一個名爲product的表。在該表中,我想更新的一些產品ID值,但我不能這樣做直接,我的「其中」條件需要根據從另一個表值來決定的記錄,所以我做的:基於連接的記錄的更新表值
update product set prod_active = 0 where prod_id in (
select prod_id from user_prod_sel where seltype = 100
)
這個問題我這裏有這是非常緩慢的。我怎樣才能把它轉換成基於oin的查詢,可以給我更快的結果?
任何幫助,非常感謝。
可能的重複:http://stackoverflow.com/questions/15209414/how-to-use-join-in-update-query – JanR