phpMyAdmin
 sql >> Datenbank >  >> Database Tools >> phpMyAdmin

So verwenden Sie Sum und Inner Join in einer Löschanweisung und fügen ihr eine dritte Tabelle hinzu

Sie können einen inner join ausführen der Produkt- und Statustabelle mit dem FK product_id und filtern Sie die order_status_id heraus in der where-Klausel.

Delete t
    from TablenName t join
         (select op.product_id, sum(op.quantity) as quantity
          from oc_order_product op
          inner join oc_order_status os on os.product_id =op.product_id
          where os.order_status_id IN (3,5,17,19,20,23,25,26,29)
          group by op.product_id
         ) op
         on op.product_id = t.product_id and op.quantity < 2;