I have a Employee table with columns
ename,eid,salary,deptno. How to retrieve sum of salary for
each deptno?
Answer Posted / radheshyam mali
Select sum(salary) from Employee group by deptno
| Is This Answer Correct ? | 6 Yes | 10 No |
Post New Answer View All Answers
What are %type and %rowtype for?
What are the differences between in and exists clause?
What are predefined functions in sql?
Does truncate release storage space?
What are inbuilt functions in sql?
What is a clob in sql?
what is isam? : Sql dba
what is text? : Sql dba
Does mysql_real_escape_string prevent sql injection?
Which query operators in sql is used for pattern matching?
What is record type in pl sql?
Why do we need cursor in pl sql?
What are the basic techniques of indexing?
Is sql microsoft?
Why do we use triggers?