首頁  >  問答  >  主體

這個說法有問題嗎?它給出了語法錯誤:在 t1 上從 table1 t1 left join table2 t2 刪除。 Id=t2.id,其中 t2.id 為空

<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粉148434742P粉148434742432 天前576

全部回覆(1)我來回復

  • P粉798343415

    P粉7983434152023-09-06 15:24:35

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

    delete t1
    from table1 t1 
    left join table2 t2 on t1.Id = t2.id 
    where t2.id is null

    回覆
    0
  • 取消回覆