PostgreSQL - Joins in PostgreSQL
Consider these tables:
What is the problem with this query?
products(id, name, price)sales(id, product_id, quantity)What is the problem with this query?
SELECT * FROM products NATURAL JOIN sales;
