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.

Exec_4_26.sql 155B

123456
  1. use ap;
  2. select * from invoices
  3. UPDATE invoices
  4. SET credit_total = invoice_total * 0.1
  5. payement_total = invoice_total - credit_total
  6. WHERE invoice_id = '';