What will be the opposite of inner join? For a table table Person (int PersonId, varchar PersoName, int AddrId), I want to know the rows in Person with bad AddrId which don’t have a row in the Address table.
What will be the opposite of inner join? For a table table Person (int
Share
An
OUTERjoin, which can be of three options:LEFTRIGHTFULLThis is a good visual representation of JOINs
Using
LEFT JOIN/IS NULLUsing
NOT EXISTSUsing
NOT IN