Changes between Version 36 and Version 37 of UseCaseModel/AddingShipment
- Timestamp:
- 01/16/25 11:14:02 (6 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UseCaseModel/AddingShipment
v36 v37 25 25 ) as Customers, 26 26 CONCAT(e.employee_name, ' ', e.employee_surname) AS EmployeeFullName, 27 CONCAT(v .make, ' ', v.model, ' (', v.registration, ')') AS VehicleInfo27 CONCAT(vd.make, ' ', vd.model, ' (', v.registration, ')') AS VehicleInfo 28 28 FROM shipment s 29 29 JOIN employee e ON s.employee_id = e.employee_id 30 30 JOIN vehicle v ON s.vehicle_id = v.vehicle_id 31 join vehicle_details vd on vd.vehicle_details_id = v.vehicle_details_id 31 32 ORDER BY s.shipment_date desc"; 32 33 }}}