From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / sayed
select top(1) * from emp order by salary desc
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
difference between anonymous blocks and sub-programs.
Can function return multiple values in sql?
how would concatenate strings in mysql? : Sql dba
What is the non-clustered index in sql?
What is meant by truncate in sql?
What has stored procedures in sql?
What is set serveroutput on?
what is innodb? : Sql dba
What is an index in sql with example?
What is sql engine in oracle?
how to include comments in sql statements? : Sql dba
What is the main reason behind using an index?
Can we insert in view in sql?
Is foreign key mandatory?
what are string data types? : Sql dba