how to get second highest salary in SQL(as/4000
Answer Posted / satheeshkumar
Select max(sal) From Employee where sal not in ( Select max
(sal) From Employee)
| Is This Answer Correct ? | 24 Yes | 4 No |
Post New Answer View All Answers
How is a process of pl/sql compiled?
what are the different tables present in mysql, which type of table is generated when we are creating a table in the following syntax: create table employee (eno int(2),ename varchar(10)) ? : Sql dba
Why stored procedure is better than query?
What is cte sql?
What is the plv (pl/vision) package offers?
Why is a primary key important?
What is the difference between in and between in sql?
Is sqlite free?
Can we connect to postgresql using sql developer?
how to create a new table in mysql? : Sql dba
First round ------------------- - Procedure - Packages - Views - Virtual tables - Can we use dcl with in function? - Joins and few scenarios - Triggers and its type - Pragma, type and its functionality - How to create db link in oracle - Materialized view - How to find duplicate values from table? - Cursor and its functionality - Write a script to display friday and its date from a entire year. - Exception Handling Second round ------------------------ Gave a scenario like. Need to write a function to perform. When user try to change a password. It must not be last five password and a given password can be combination of characters, symbols, upper and lower case.
What does (+) mean in sql joins?
What is a join?
What is java sql drivermanager?
what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba