answersLogoWhite

0


Best Answer

Order By


It's correct or not

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which SQL keyword is used to sort the result-set?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which SQL keyword is used to retrieve a maximum value?

MOST


Which SQL keyword is used to retrieve only unique values?

DISTINCT


Which SQL keyword is used to specify a condition that rows must meet to be included in the results of an SQL SELECT query?

select


What is the use of the SQL sort?

The use of sorting information in SQL is to organize database query results. Typically the data can be sorted in either ascending or descending order. The "Order By" command can be used to sort data in SQL by multiple columns.


How do you define an integer in SQL Server?

with the keyword int: eg: declare @myIntegerVariable int


What SQL keyword must be used to remove duplicate rows from the result?

The SQL SELECT DISTINCT StatementIn a table, some of the columns may contain duplicate values. This is not a problem, however, sometimes you will want to list only the different (distinct) values in a table. The DISTINCT keyword can be used to return only distinct (different) values.SQL SELECT DISTINCT SyntaxSELECT DISTINCT column_name(s) FROM table_name


Which SQL statement is used to update data in a database?

The SQL statement used to update data in a database is the "UPDATE" statement. It allows you to modify existing records in a table by specifying the column and value you want to update based on certain conditions. Additionally, you can use the "SET" keyword to assign new values to specific columns in the table.


What keyword in an SQL statement's WHERE clause is used to select rows based on a range of values?

BETWEEN For example: SELECT columnName FROM tableName WHERE columnName BETWEEN '1' AND '20'


How might one use an Inner Join keyword?

The SQL inner join keyword is used to select every row from a table so long as there is a match between the columns of both the tables. This allows many permutations of listings to be made in specified tables.


What is distinct in SQL language?

distinct keyword displays only unique values. eg.if there is a deprtment_id called 140 for thrice means it will diaplays only once. select distinct department_id from departments


What are the are two sort functions for columns in SQL?

Asc & desc


What is the difference between T-sql and sql?

T-SQL is Microsoft's version of the generic SQL langauge to be used with, for example, Microsoft SQL Server.