Intellipaat 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?

3 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;
0 votes
by (3.1k points)

Whether it is for obtaining or preparing an output of employees that are earning in excess of ten thousand, a select query with where clause would satisfy. The Where clause is going to will select only those rows where the salary is going to be more than ten thousand.

Here is the code to implement that:

SELECT *

FROM employees

WHERE salary >= 10000;

Related questions

0 votes
2 answers
0 votes
3 answers
0 votes
1 answer
0 votes
2 answers

31k questions

32.8k answers

501 comments

693 users

Browse Categories

...