view_invoice_details.sql 445 B

12345678910111213141516
  1. CREATE VIEW `view_invoice_details` AS
  2. select
  3. `a`.`invoice_number` AS `invoice_number`,
  4. `a`.`project_id` AS `project_id`,
  5. `a`.`pos_id` AS `pos_id`,
  6. `a`.`invoice_date` AS `invoice_date`,
  7. `a`.`cashier` AS `cashier`,
  8. `b`.`line_count` AS `line_count`,
  9. `b`.`total` AS `total`,
  10. `a`.`mdate` AS `mdate`,
  11. `a`.`cdate` AS `cdate`
  12. from (
  13. `invoice_header` `a`
  14. left join `view_totals` as `b` on (`a`.`invoice_number` = `b`.`invoice_number`)
  15. );