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


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 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


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 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.


What is the name of the SQL language used in SQL Server stored procedures?

Transact SQL (TSQL)