Employee Salaries

Sort by

recency

|

1066 Discussions

|

  • + 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

    MySQL:

    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

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