#ERD (ERD 출처: https://www.ntu.edu.sg/home/ehchua/programming/sql/SampleDatabases.html 소스 출처: https://code.google.com/archive/p/northwindextended/downloads) 1. 단일 쿼리 explain select a.customerid ,b.OrderDate ,d.ProductName from Customers a inner join Orders b on(b.customerid = a.customerid) inner join `Order Details` c on(c.OrderID = b.OrderID) inner join Products d on(d.ProductID = c.ProductID) w..