問題
A數據表欄位為 post_id
B數據表的欄位為 url
A跟B都有很多數據
A跟B有些 post_id 跟 url 是相符的 ,有些是不相符的 (A跟B有關聯性的字段是 post_id 跟 url )
如何把不相符的都刪除?只留下有關聯性的
DELETE a, b FROM `a` JOIN `b` ON b.ID != a.post_id這樣卻失敗了....?
mariaDB 報錯誤:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'JOIN b ON b.ID != a.post_id' at line 3
然後又說
a, b 這一段是預期以外的符號?
PS:
我要刪的是兩個資料表,只要都有不符合就刪除該筆
我確定有 SELECT 到非常多不相符的數據,也有相符的數據。
a 的 post_id 有多個,例如b.ID 假如等於 123 那 a.post_id 有一個或多個123
12345678_0001
相关分类