Employee Salaries

Sort by

recency

|

1020 Discussions

|

  • + 0 comments

    SELECT name from Employee where salary>2000 AND months<10 ORDER BY employee_id;

  • + 0 comments

    SELECT NAME FROM EMPLOYEES WHERE SALARY > 2000 ORDER BY EMPLOYEE_ID ASC;

  • + 0 comments

    select name from employee where salary > 2000 and months < 10 order by employee_id asc;

  • + 0 comments

    SELECT Name FROM employee WHERE salary > 2000 AND months < 10 ORDER BY employee_id ASC;

  • + 0 comments

    ngoccth_SQL SERVER: SELECT [name] FROM Employee WHERE Salary > 2000 AND months < 10 ORDER BY employee_id