You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INNER JOIN location l1 ON event.start_location_id = l1.location_id /* inner join : hanya yg berelasi yg dijoin, beda dengan left join dan right join */
INNER JOIN location l2 ON event.end_location_id = l2.location_id
NATURAL JOIN travel; /* natural join : yg sama ditulis sekali */