i need to know how i display department which has salary >
=5000 for the below table
Department
-----------
salary deptname
1000 a
3000 a
2000 b
3000 b
4000 c
5000 c
kindly send the query to thilakvinoth13@gmail.com
Answers were Sorted based on User's Feedback
Answer / guest
select deptname from department where salary>=5000
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / vinothmca21
use this,
select dept from employee group by dept having sum(salary)>=
5000
regards,
Vinoth
Is This Answer Correct ? | 4 Yes | 3 No |
Hi dear,
1) If you have need name of total salary of each department to spend on employee(Understand like this) then use query:
select deptname, SUM(salary)
from Department
GROUP BY deptname
HAVING SUM(salary) >= 5000;
2) Otherwise
SELECT deptname
FROM Department
WHERE salary >= 5000;
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sahil
The query will be to get the total of salary >= 5000 in a
department is :
select deptname, sum (salary) as totalsalary from Department
group by deptname
then it will shown like
deptname total salary
a 4000
b 5000
c 9000
now we will get the highest total salary from department
remember group by is always used to group-set.
select deptname, sum (salary) from Department
group by deptname
having sum (salary) >= 5000
Then you will get the answer!!
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / chandra10shekhar
SELECT * FROM department WHERE salary>=5000
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / arbind panigrahi
select * from deptname where salary<=5000
Is This Answer Correct ? | 0 Yes | 3 No |
Give an example of why you would want to denormalize a database
what is raid? : Sql server database administration
How to apply filtering criteria at group level with the having clause in ms sql server?
If there exist a index on the table, and we then make a view on that table (include the indexed column from base table) than why do we require indexing on view?Doesnt it create an overhead?
Disadvantages of the indexes?
What do you understand by mirroring and mention the advantages of the mirroring?
as a general practice, it is recommended to have dbo be the owner of all database objects however, in your database you find number of tables owned by a user other than dbo, how could you fix this? : Sql server administration
Which index created when Create Index on table(col), Why
What do you mean by an execution plan? How would you view it?
What is policy management?
Do you know data definition language, data control language and data manipulation language?
What is save transaction and save point?