Changes between Version 8 and Version 9 of Design


Ignore:
Timestamp:
02/07/25 17:32:13 (2 weeks ago)
Author:
163080
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Design

    v8 v9  
    3838SELECT
    3939    client_id,
    40     name,
     40    client_name,
    4141    contact_person,
    42     email,
     42    client_email,
    4343    phone,
    4444    city,
     
    6363    Invoice i ON cl.client_id = i.client_id AND i.status = 'Unpaid'
    6464WHERE
    65     cl.client_id = 5  -- Replace 5 with the specific client ID
     65    cl.client_id = X
    6666GROUP BY
    6767    cl.client_id;
     
    7676SELECT
    7777    i.invoice_id,
    78     c.name AS client_name,
     78    c.client_name,
    7979    i.issue_date,
    8080    i.due_date,
     
    106106    status = 'Paid'
    107107WHERE
    108     invoice_id = 2; -- Replace 2 with the actual invoice ID
     108    invoice_id = X;
    109109
    110110}}}