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
What is the most important ddl statements in sql are?
Can we insert in view in sql?
Which is faster count (*) or count 1?
Can we rollback truncate?
Explain alias in sql?
How do I run a pl sql procedure in sql developer?
what is 'mysqldump'? : Sql dba
What is the life of an sql statement?
What is sql and how does it work?
Does asenumerable execute the query?
What are the basic sql commands?
What is a primary key sql?
What is cursor and its types?
How do I start sql from command line?
what is the difference between delete and truncate statement in sql? : Sql dba