how to find the second highest salary from emp table?
Answer Posted / nirjesh pandey
select salary from employee order by salary DESC LIMIT(1,1);
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is union, minus and interact commands? : Sql dba
Can we use threading in pl/sql?
Can primary key be changed?
What is microsoft t sql?
What is meant by <> in sql?
How to change the order of columns in Oracle SQL Plus ?
What is synchronized subquery?
Is sql a scripting language?
What do we need to check in database testing?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
what tools available for managing mysql server? : Sql dba
what is the different between now() and current_date()? : Sql dba
Name the operator which is used in the query for pattern matching?
how to create a new table in mysql? : Sql dba
Is mariadb a nosql database?