We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Basic Select
- Employee Salaries
- Discussions
Employee Salaries
Employee Salaries
Sort by
recency
|
1103 Discussions
|
Please Login in order to post a comment
select name from Employee where (salary>2000) AND (months<10);
Select Name from Employee Where Salary>2000 and Months < 10 Order by Employee_id Asc
SELECT name FROM Employee WHERE salary > 2000 AND months < 10 ORDER BY employee_id ASC;
I put the correct code but it still says it is wrong? Does anybody know why
SELECT name from Employee where salary > 2000 and months < 10 order by employee_id;