All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1901_2000.s1965_employees_with_missing_information.script.sql Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
# Write your MySQL query statement below
# #Easy #Database #SQL_I_Day_4_Union_and_Select #2022_05_22_Time_617_ms_(30.40%)_Space_0B_(100.00%)
select employee_id
from employees
where employee_id not in (select employee_id from salaries)
UNION
select employee_id
from salaries
where employee_id not in (select employee_id from Employees)
order by 1




© 2015 - 2024 Weber Informatics LLC | Privacy Policy