You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

demo-queries-from slides-5.sql 255B

123456789101112
  1. UPDATE invoices
  2. SET payment_date = '2018-09-21',
  3. payment_total = 19351.18
  4. WHERE invoice_number = '97/522';
  5. UPDATE invoices
  6. SET terms_id = 1
  7. WHERE vendor_id = 95;
  8. UPDATE invoices
  9. SET credit_total = credit_total + 100
  10. WHERE invoice_number = '97/522';