Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT TOP 10 empid, empname, salary
FROM employees
ORDER BY salary DESC
SELECT TOP 10 empid, empname, salary
FROM employees
WHERE empid NOT IN
(
SELECT TOP 10 empid
FROM employees
ORDER BY salary DESC
)
ORDER BY salary DESC