Final answer:
The SQL keyword used to sort the result table by the values in one or more columns is ORDER BY.
Step-by-step explanation:
The SQL keyword used to sort the result table by the values in one or more columns is ORDER BY.
For example, to sort a table 'students' by the name column in ascending order, you would use the following SQL query
SELECT FROM students ORDER BY name ASC
This query will return the rows from the students table in alphabetical order based on the values in the 'name' column.