difference join inner join code example
Example 1: only join in sql
They are functionally equivalent, but INNER JOIN can be
a bit clearer to read, especially if the query has
other join types (i.e. LEFT or RIGHT or CROSS)
included in it.
Example 2: inner join
INNER JOIN is used when retrieving data from
multiple tables and will return only matching data.
example=
Select P.FIRST_NAME , M.DRUG_ID
FROM PATIENTS P
INNER JOIN MEDICATIONS M ON P.PATIENTS_ID = M.PATIENTS_ID