the two bits of SQL below get the same result
SELECT c.name, o.product FROM customer c, order o WHERE c.id = o.cust_id AND o.value = 150 SELECT c.na
Both queries are performing an inner join, just different syntax.