select name of emplyoee whose total salary is 130 from
following table.
id name salary
1 a 100
2 b 20
3 c 50
1 a 30
2 b 70
Post the resulantant Query?
Answer Posted / kumar.t
Select id, name, sum(salary) from emp
group by id, name
Having sum(salary) =130
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why do we need normalization?
Can binary strings be converted into numeric or float data types?
What are drilldown reports?
What is star, snowflake and star flake schema? : sql server analysis services, ssas
How to query multiple tables jointly?
What are constraints?
How do I view a script in sql server?
What are the new data types are introduced in sql 2000?
Explain about SQL server 2005?
Why is sql server log file full?
How can you check the level of fragmentation on a table?
When is the use of update_statistics command?
What is difference between line feed ( ) and carriage return ( )?
What is ssrs?
what is a transaction and what are acid properties? : Sql server database administration