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
Can we connect to postgresql using sql developer?
What is the starting oracle error number?
How do you optimize a stored procedure query?
What is a temporal data type?
Why do we use view in sql?
Is t sql a programming language?
What do you understand by pl/sql cursors?
Why are indexes and views important to an organization?
How can I see all tables in sql?
What is normalization sql?
can a stored procedure call itself or recursive stored procedure? : Sql dba
How to check if a column is nullable before setting to nullable?
What is the difference between local variables and global variables?
Explain two easy sql optimizations.
How do I add a primary key to a table?