ITS 129 CH.4

11 September 2022
4.7 (114 reviews)
25 test answers

Unlock all answers in this set

Unlock answers (21)
question
BETWEEN
answer
The ____ operator is inclusive, meaning that a value equal to either end would be selected.
question
LIKE
answer
The ____ operator uses one or more wildcard characters to test for a pattern match.
question
NOT
answer
Preceding a condition by the ____ operator reverses the truth of the original condition.
question
SELECT-FROM-WHERE
answer
The basic form of the SQL SELECT command is ____.
question
GROUP BY
answer
The ____ clause lets you group data on a particular column
question
_
answer
The wildcard ____ symbol represents an individual character
question
*
answer
in the select clause, you can use the ____symbol to indicate that you want to include all columns
question
HAVING
answer
The ____ clause is used to restrict the groups that will be included in a query result
question
SELECT
answer
in SQL you use the ____ command to query a database
question
minor
answer
when you need to sort data on two columns, the less important column is called the ____ sort key.
question
BETWEEN
answer
the ____ operator specifies a range of values in a condition
question
IN
answer
you can use the ____ operator following by a collection of values to provide a concise way of phrasing certain conditions
question
SUM
answer
the ____ function calculates a total of the values in a column
question
%
answer
In SQL for oracle and for SQL server, the ____ symbol is used as a wildcard to represent any collection of characters.
question
ORDER BY
answer
You use the ____ clause to list data in a specific order
question
T/F you cannot assign names to computed columns
answer
False
question
T/F instead of including every column in the SELECT clause, you can use an ampersand (&) to indicate that you want to include all columns
answer
False
question
T/F the only arithmetic operators that can be used in SELECT statements are + for additions and - for subtraction
answer
False
question
t/f the BETWEEN operator is an essential feature of SQL.
answer
false
question
t/f to specify that query results be listed in a specific order, use the SORT BY clause
answer
False
question
t/f A query is a question represented in a way that the DBMS can understand
answer
true
question
t/f sometimes a condition involves a column that can accept null values
answer
true
question
t/f the DISTINCT operator is useful when used in conjunction with the COUNT function
answer
true
question
t/f its possible to place one query inside another
answer
true
question
t/f the MIN function determines the minimum value in a column
answer
true