how to find the second highest salary from emp table?
Answer Posted / boring guy
select max(sal) from emp where sal!=(select max(sal) from
emp)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is nvarchar in sql?
When are we going to use truncate and delete?
How do I run a pl sql program?
Can you join views in sql?
How many types of triggers exist in pl/sql?
what are the drivers in mysql? : Sql dba
What is sql basics?
Explain what is a view?
How do I count rows in sql query?
what is text? : Sql dba
How do I start pl sql?
What is output spooling in sql*plus?
1. is it possible to use the cursor atttibutes (%found ,% rowcount , %isopen , %notfound ) to our user defined cursor names ....... cursor cursor_name is select * from scott.emp if you use... cursor_name%found , %rowcount ,%isopen,%notfound...will it work... -------------------------- 2.what is the difference between the varray and index by table .. -------- 3. type type_name is table of number(8,3) index by binary_integer; identifier_name type_name; first , last , prior , next ,trim are the methods we can use it for the above type...simillary is there any way to apply for cursors... with thanks and regards..sarao...
what is myisam? : Sql dba
What is the process of copying data from table a to table b?