Answers for "select not matching data from two tables"

SQL
1

select not matching data from two tables

SELECT Name, Gender,country, Salary, DeptName   
FROM tbl_Employee  
LEFT OUTER JOIN tbl_Department  
ON tbl_Employee.DepartmentId = tbl_Department.DeptId  
where tbl_Employee.DepartmentId is null
Posted by: Guest on November-17-2021

Code answers related to "select not matching data from two tables"

Code answers related to "SQL"

Browse Popular Code Answers by Language