I was using w3resource (heres the link: https://www.w3resource.com/sql-exercises/subqueries/sql-subqueries-inventory-exercise-10.php) and came across this exercise.
Anyways, the solution they gave for this exercise was
SELECT b.*, a.cust_name
FROM orders b, customer a
WHERE a.customer_id=b.customer_id
AND b.ord_date='2012-08-17';
Is a join happening here? Everytime I used joins it would be like
SELECT b.*, a.cust_name
FROM orders b
JOIN customer a ON b.customer_id = a.customer_id
Also the topic of the exercise was subqueries and I'm not how there was a subquery used in this solution