Computer » SQL
Which one of the following sorts rows in SQL?
SORT BY
ALIGN BY
ORDER BY
GROUP BY
Computer » SQL
To sort the results of a query use:
SORT BY.
GROUP BY.
ORDER BY.
None of the above is correct.
Computer » SQL
To define what columns should be displayed in an SQL SELECT statement:
use FROM to name the source table(s) and list the columns to be shown after SELECT.
use USING to name the source table(s) and list the columns to be shown after SELECT.
use SELECT to name the source table(s) and list the columns to be shown after USING.
use USING to name the source table(s) and list the columns to be shown after WHERE.
Computer » SQL
SQL can be used to:
create database structures only.
query database data only.
modify database data only.
All of the above can be done by SQL.
Computer » SQL
The SQL statement that queries or reads data from a table is ________ .
SELECT
READ
QUERY
None of the above is correct.