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