I've seen answers to other questions on here and most suggest using a JOIN instead of WHERE in SQL.
I'm new to SQL, having started using Oracle around 6 months ago and I've not once used a JOIN.
I don't do any complex queries by any means. A query I use quite often is below. What would the equivalent be using a JOIN, should I do that and are there any advantages?
SELECT orders.no, orders.created, totals.net
FROM orders, totals
WHERE orders.no = totals.no
I'm using an ancient version of Oracle; 8i so I believe some of the JOIN are using (+) or something, but never understood it.