From 00234e18bfb2ba86b7b3b3dfff6c0bb4dbb17ff2 Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 18 May 2019 13:00:21 +0200 Subject: [PATCH] mysql: add salary-of-employees --- mysql/salary-of-employees/solution.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 mysql/salary-of-employees/solution.sql diff --git a/mysql/salary-of-employees/solution.sql b/mysql/salary-of-employees/solution.sql new file mode 100644 index 0000000..a581cdd --- /dev/null +++ b/mysql/salary-of-employees/solution.sql @@ -0,0 +1,5 @@ +SELECT name +FROM Employee +WHERE salary > 2000 +AND months < 10 +ORDER BY employee_id ASC \ No newline at end of file