Guest User

Untitled

a guest
Jul 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. DELETE t1
  2. FROM TABLE1 t1
  3. INNER JOIN TABLE2 t2
  4. ON t1.ID = t2.ID
  5.  
  6. DELETE o
  7. FROM ORDERS o
  8. INNER JOIN Clients c
  9. ON o.ClientID = c.ID
  10. WHERE c.CreditHold = 1;
Add Comment
Please, Sign In to add comment