-Basically joins information from two table, but mainly used to select for overlapping info eg. all the manager info
SECLECT *
FROM Employee
JOIN Manager
ON Employee.id=Manager.id;
if we use LEFT JOIN everything from the first table will be included and only the matching criteria for manager table would appear
RIGHT JOIN is opposite