I'm learning SQL, and the chapter talks about joining tables like this
SELECT
P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE`
FROM
PRODUCT, VENDOR
WHERE
PRODUCT.V_CODE = VENDOR.V_CODE;
However, when I look up additional information on joins on the web, I see the JOIN
clause with inner and outer joins and so on, which is fine, but then is using the FROM
clause considered a join or not? Or is this simply an out of date way doing joins?