Guest User

Untitled

a guest
Feb 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. --voltar pneus para "sem marca de fogo" pelo id da despesa
  2.  
  3. update tire
  4. set "name" = 'Sem identificação', start_control_use = 0, status = 'without_fire_branding', current_life = 1
  5. where id
  6. in (
  7. select id
  8. from tire
  9. where transaction_id
  10. in (
  11. select id
  12. from "transaction"
  13. where expense_id = 2503
  14. )
  15. )
  16.  
  17. ------------------------------------------------------------
Add Comment
Please, Sign In to add comment