SQL - Advanced Joins
You have two tables:
Using
Products(product_id, name, category_id)Categories(category_id, name)Using
NATURAL JOIN between these tables causes unexpected results. What is the best way to fix this?