Changes between Version 8 and Version 9 of Design
- Timestamp:
- 02/07/25 17:32:13 (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Design
v8 v9 38 38 SELECT 39 39 client_id, 40 name,40 client_name, 41 41 contact_person, 42 email,42 client_email, 43 43 phone, 44 44 city, … … 63 63 Invoice i ON cl.client_id = i.client_id AND i.status = 'Unpaid' 64 64 WHERE 65 cl.client_id = 5 -- Replace 5 with the specific client ID65 cl.client_id = X 66 66 GROUP BY 67 67 cl.client_id; … … 76 76 SELECT 77 77 i.invoice_id, 78 c. name ASclient_name,78 c.client_name, 79 79 i.issue_date, 80 80 i.due_date, … … 106 106 status = 'Paid' 107 107 WHERE 108 invoice_id = 2; -- Replace 2 with the actual invoice ID108 invoice_id = X; 109 109 110 110 }}}