Skip to content

Instantly share code, notes, and snippets.

@cadams500
Created April 3, 2012 18:04
Show Gist options
  • Save cadams500/2294246 to your computer and use it in GitHub Desktop.
Save cadams500/2294246 to your computer and use it in GitHub Desktop.
Mysql Multi-Table Delete
delete
from
t1, t2, t3
using
t1
join
t2 on t1.id = t2.id
join
t3 on t2.id = t3.id
where
[where-clause]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment