Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / alex, n.y [microsoft]
SELECT TOP 5 [SALARY] FROM [EMP]
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Is natural join and inner join same?
Do foreign keys improve performance?
Can I join the same table twice?
Can you upgrade sql express to full sql?
Why do we need cursors in pl sql?
How do I upgrade sql?
What is the trigger in sql?
What are sql functions? Describe in brief different types of sql functions?
What is data abstraction in sql?
How do I view tables in mysql?
What is a data definition language?
what is cursor and its type, what is ref cursor write a syntax to pass ref cursor into procedure out fucntion and call the procedure
What is the difference between delete, truncate and drop command?
What is string data type in sql?
Suppose a student column has two columns, name and marks. How to get name and marks of the top three students.