Employee Salaries

Sort by

recency

|

1103 Discussions

|

  • + 0 comments

    select name from Employee where (salary>2000) AND (months<10);

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

  • + 2 comments

    I put the correct code but it still says it is wrong? Does anybody know why

  • + 0 comments

    SELECT name from Employee where salary > 2000 and months < 10 order by employee_id;