From 57a4353aca24033ffef6bb28c94b6ce6c36936e2 Mon Sep 17 00:00:00 2001 From: shubhdesai1611 <126991856+shubhdesai1611@users.noreply.github.com> Date: Sat, 6 Apr 2024 23:11:05 +0000 Subject: [PATCH] Completed 01-01 --- Scripts/01-01-shubh.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Scripts/01-01-shubh.sql diff --git a/Scripts/01-01-shubh.sql b/Scripts/01-01-shubh.sql new file mode 100644 index 0000000..d684b9e --- /dev/null +++ b/Scripts/01-01-shubh.sql @@ -0,0 +1,4 @@ +SELECT E.firstName, E.lastName, M.firstName, M.lastName +FROM employee E +JOIN employee M +ON E.managerId = M.employeeId; \ No newline at end of file