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 / ajit nayak
select ename,sal,(sal*12)
from emp
where (sal*12) > 30000;
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Can a key be both primary and foreign?
Which are the different case manipulation functions in sql?
How exception is different from error?
How to find 3rd highest salary of an employee from the employee table in sql?
What is Materialized View? In What Scenario we Use Materialized View?
What is a trigger word?
List the various privileges that a user can grant to another user?
what is meant by urlencode and urldocode? : Sql dba
Can 2 queries be executed simultaneously in a distributed database system?
What is meaning of <> in sql?
What is rank dense_rank and partition in sql?
What is a delimiter in sas?
What are pl/sql packages?
What is the most common sql injection tool?
What is a heap in sql?