-
-
-
-
-
-
-
-
-
-
-
-
-
-
There are 2 tables, Employee and Department. There are few records in employee table, for which, the department is not assigned. The output of the query should contain all th employees names and their corresponding departments, if the department is assigned otherwise employee names and null value in the place department name. What is the query?
Select emp_name, Dept_name from (Employee_table left outer join Dept_table on Employee_table.Dept_id = Dept_table.Dept_id)
-
-
What operator tests column for the absence of data?
IS NULL operator
-
-
-
-
SQL Interview Questions
Ans