Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (55.6k points)

Can anyone tell the SQL query to find an employee whose salary is equal or greater than 10000?

2 Answers

0 votes
by (119k points)
edited by

You can use the following SQL query to find the employee details whose salary is equal or greater than 10000:

SELECT Emp_Name, E_id

FROM Employee

WHERE salary >= 10000

If you wish to learn SQL from top experts then check out this SQL Certification program by Intellipaat that provides instructor-led training, and also certification.

0 votes
by
select emp_name,emp_id from employee where salary >1000;

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...