Answers for "inner joining one table with any one of two tables using conditions and or sql"

SQL
0

how to inner join 4 tables in sql

# no need to use parentheses - works fine
SELECT * FROM names A
INNER JOIN address B ON A.personID = B.personID
INNER JOIN emailAddress C ON A.personID = C.personID
INNER JOIN phoneNumbers D ON A.personID = D.personID;
Posted by: Guest on May-07-2020

Code answers related to "inner joining one table with any one of two tables using conditions and or sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language