2 つのテーブルからデータを選択しようとしています。
-warehouse には、warehouseId、warehouseName の 2 つの列があります。 -transportation には、
transporter、warehouseId1、warehouseId2 の 3 つの列が
あります。
select a.transporter, b.warehouseName as warehouse1, b.warehouseName as warehouse2
from transportation a, warehouse b
where a.warehouseId1 = b.warehouseId and a.warehouseId2 = b.warehouseId