SQL - Advanced Joins
You have three tables:
orders (10000 rows), customers (100 rows), and regions (10 rows). To optimize performance, which join order is best for:SELECT * FROM orders JOIN customers ON orders.cust_id = customers.id JOIN regions ON customers.region_id = regions.id;