Questions and Correct Answers (Verified
Answers) | Just Released
When you code a column list in an INSERT statement, you can omit columns with
default values and columns that allow ____________________________ values. -
--------CORRECT ANSWER-----------------null
If you code a column list in an INSERT statement that includes a column that's
defined with a default value, you can insert the default value for that column by
coding the ____________________ keyword in the VALUES clause of the INSERT
statement. ---------CORRECT ANSWER-----------------default
To insert several rows into a table with an INSERT statement, you code a/an
___________________________ in place of the VALUES clause. ---------CORRECT
ANSWER-----------------subquerry OR SELECT statement
When you code a DELETE statement for one or more rows, the
_________________ clause specifies which row or rows are to be deleted. ---------
CORRECT ANSWER-----------------where
, The ________________ clause of the SELECT statement names the table that
contains the data to be retrieved. ---------CORRECT ANSWER-----------------FROM
If you want to filter the result set that's returned by a SELECT statement, you
must include a/an ___________________ clause. ---------CORRECT ANSWER---------
--------WHERE
Unless you assign a/an _____________________________, the column name in
the result set is the same as the column name in the base table. ---------CORRECT
ANSWER-----------------Alias
To prevent duplicate rows from being returned by a SELECT statement, you can
code the __________________ keyword in the SELECT clause. ---------CORRECT
ANSWER-----------------Distinct
When you code a SELECT statement, you must code the four main clauses in the
following order
SELECT, FROM, ORDER BY, WHERE
SELECT, ORDER BY, FROM, WHERE
SELECT, WHERE, ORDER BY, FROM
SELECT, FROM, WHERE, ORDER BY ---------CORRECT ANSWER-----------------SELECT,
FROM, WHERE, ORDER BY