Answer: Sorting the Records
Find a detailed explanation of how to get the results of a query in sorted order.
Solution
The solution is given below:
Press + to interact
/* The query to find top 3 highly paid employees */SELECT EmpName, SalaryFROM EmployeesORDER BY Salary DESCLIMIT 3;
Explanation
The explanation of the solution code is given below:
Line 2: The
SELECT
query selectsEmpName
andSalary
columns.Line 3: The
FROM
clause specifies the table name asEmployees
.Line 4: The
ORDER BY
clause sorts theSalary
column in descending order.Line 5: We use the
LIMIT
clause here. This clause limits the records to the specified value.
Recall of relevant concepts
We have covered the following concepts in this question:
Selective columns
Sorting the results
Limiting records
Let’s discuss the concepts used in the solution: ...