Changes between Version 11 and Version 12 of UseCaseModel/ShipmentDetails


Ignore:
Timestamp:
12/28/24 21:31:38 (3 weeks ago)
Author:
153093
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCaseModel/ShipmentDetails

    v11 v12  
    6060{{{
    6161select
    62         c.customer_name,
    63         CONCAT(a.city , ', ', a.street, ', ',a.building_number, ', ', a.postcode) AS customer_address,
    64         w.wine_name,
    65         sl.wine_base_price,
    66         sl.wine_agreed_price,
    67         sl.wine_quantity
     62    c.customer_name as CustomerName,
     63    CONCAT(a.city , ', ', a.street, ', ',a.building_number, ', ', a.postcode) AS CustomerAddress,
     64    w.wine_name as WineName,
     65    sl.wine_base_price as WineBasePrice,
     66    sl.wine_agreed_price as WineAgreedPrice,
     67    sl.wine_quantity as WineQuantity
    6868from shipment_load sl
    6969join customer c on sl.customer_id = c.customer_id