我有一个将几个表连接在一起的查询。
没有一个选定的列可以为空,那么最好的连接类型是什么???
这是查询:
SELECT ir.range_name, it.item_type, oi.itemQuantity, i.item_value
FROM orders o
JOIN order_items oi ON oi.orderId = o.id
JOIN items i ON i.id = oi.itemNumber
JOIN item_types it ON it.id = i.item_type
JOIN item_ranges ir ON ir.id = i.item_name
WHERE o.id = 1;
如果我已经设法得到正确答案,请告诉我!