我想從表中刪除,使用其他表的聯接。刪除引用多個表不能在MYSQL上工作
我的SQL如下:
DELETE FROM `threadsread`
USING `mybb_threads` t
WHERE
threadsread.tid=threads.tid and threadsread.uid in (2111, 2564, 2326, 2510)
and mybb_threads.fid=30
,但我得到了以下錯誤:
1109 - Unknown table 'mybb_threadsread' in MULTI DELETE
這些都不是意見,一切都是真實的表。我可以使用類似的SQL運行選擇,沒有任何問題。
這不就是我在我的SQL代碼上做什麼? – Emerson