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
Answer Posted / 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 |
Post New Answer View All Answers
What is full outer join in sql server joins?
How to test a dml trigger in ms sql server?
Explain indexed views?
On a windows server 2003 active – passive failover cluster, how do you find the node which is active?
What is log shipping? Can we do logshipping with SQL Server 7.0 - Logshipping is a new feature of SQL Server 2000. We should have two SQL Server - Enterprise Editions. From Enterprise Manager we can configure the logshipping. In logshipping the transactional log file from one server is automatically updated into the backup database on the other server. If one server fails, the other server will have the same db and we can use this as the DR (disaster recovery) plan.
Can a database be shrunk to 0 bytes, if not, why?
How to define output parameters in stored procedures?
what is database replicaion? What are the different types of replication you can set up in sql server? : Sql server database administration
Do you know the cursor types?
Explain Reporting Life Cycle?
How do you run a trace?
explain how to create a new schema in a database? : Sql server database administration
Can we update data in a view?
What are the steps you should follow to start sql server in single-user mode?
How to deploy the Report?