Changes between Version 2 and Version 3 of ManageTripUseCase


Ignore:
Timestamp:
01/13/25 12:57:47 (45 hours ago)
Author:
221514
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ManageTripUseCase

    v2 v3  
    2929JOIN location as lt on r.to_location_id = lt.location_id
    3030JOIN trip_stops as stop on lf.location_id = stop.location_id
    31 WHERE status = 'NOT_STARTED' AND date > {date_after} AND date < {date_before}
     31WHERE status = 'NOT_STARTED'
     32AND date > {date_after} AND date < {date_before} -- Optional
    3233ORDER BY date, stop_time;
    3334}}}