這個說法有問題嗎?它給出了語法錯誤:在 t1 上從 table1 t1 left join table2 t2 刪除。 Id=t2.id,其中 t2.id 為空
P粉148434742
P粉148434742 2023-09-05 20:04:37
0
1
573
<p>這個說法有問題嗎? mysql 中出現語法錯誤</p> <pre class="brush:php;toolbar:false;">delete from table1 t1 left join table2 t2 on t1. Id=t2.id 其中 t2.id is null</pre> <p>請提出您的建議</p>
P粉148434742
P粉148434742

全部回覆(1)
P粉798343415

加入時,您需要指定要從哪個表中刪除

delete t1
from table1 t1 
left join table2 t2 on t1.Id = t2.id 
where t2.id is null
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!