define a variable representing the expression used to
calculate on emps total annual remuneration.use the
variable in a statement which finds all emps who can earn
30000 a year or more.
Answer Posted / padmalatha
select Empno,Annual_Salary=sum(Month_Salary) from
Employee_Salary
group by Empno having sum(Month_Salary)>30000
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Is pl sql and postgresql same?
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
How can we link a sql database to an existing android app?
How does an execution block start and end in pl sql?
Can we commit inside a trigger?
Explain lock escalation? : Transact sql
what are all the different types of indexes? : Sql dba
What is sql resultset?
What is pl sql commands?
How can I change database name in sql?
what is the difference difference between procedure and packages
what tools available for managing mysql server? : Sql dba
Does pl/sql support create command?
What are aggregate and scalar functions?
What do you mean by stored procedures? How do we use it?