how to make relationship between two database tables code example
Example: how to relationship query two different tables in MySQL
SELECT product_name, customer.name, date_of_sale
FROM sales, product, customer
WHERE product.product_id = sales.product_id
AND customer.customer_id >= sales.customer_id LIMIT 0, 30