Employee Salaries

Sort by

recency

|

1053 Discussions

|

  • + 0 comments

    Select name from employee where salary >2000 and months <10 order by employee_id as;

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

    SELECT name FROM Employee WHERE salary > 2000 AND months < 10 ORDER BY employee_id;

  • + 0 comments

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