Created
May 10, 2013 11:08
-
-
Save shmaltorhbooks/5553774 to your computer and use it in GitHub Desktop.
delete from multiple tables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE c, t | |
FROM crm_calls c | |
LEFT JOIN crm_tickets t on t.call_id=c.id | |
WHERE c.last_main_ticket_type_id=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment