Deck 8: Restricting Rows and Sorting Data

Full screen (f)
exit full mode
Question
Search conditions for data contained in numeric columns must be enclosed in single quotation marks.
Use Space or
up arrow
down arrow
to flip the card.
Question
Retrieving only specific rows from a table is a process known as selection.
Question
The percent sign (%) and underscore (_) symbols can be used with the LIKE comparison operator to create a search pattern.
Question
The IN comparison operator is used when searching for a pattern of characters.
Question
A NULL value is the same as a blank space.
Question
The BETWEEN...AND comparison operator can be used to specify a range of values as a search condition.
Question
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as FALSE to be included in the query results.
Question
In a WHERE clause, logical operators are evaluated before comparison operators.
Question
Logical operators are evaluated in the order of NOT, AND, and OR.
Question
Using the OR logical operator to combine search conditions based upon the same column is the same as using the IN comparison operator.
Question
NOT, ALL, and OR are all considered logical operators.
Question
Search conditions for data contained in non-numeric columns must be enclosed in double quotation marks.
Question
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as True to be included in the query results.
Question
Although Oracle11g is not case sensitive in regards to keywords, table names, and column names, it is case sensitive when comparing search conditions to the data contained in a database table.
Question
Retrieving only certain rows from a table is known as projection.
Question
The percent sign (%) is used in a search pattern to indicate "exactly one character in this position".
Question
Comparison operators are used to combine search conditions.
Question
The percent sign (%) and asterisk (*) symbols can be used with the LIKE comparison operator to create a search pattern.
Question
The underscore symbol (_) is used in a search pattern to indicate "exactly one character in this position".
Question
When two conditions are joined by the AND logical operator, only one of the conditions must be True to be included in the query results.
Question
The process of specifying that certain rows be displayed in the results of a query is known as  selection \underline { \text { selection } } . _________________________
Question
Oracle11g  is case sensitive \underline {\text { is case sensitive } } when comparing data to a search condition. _________________________
Question
A column alias that has been defined in the SELECT clause of a SELECT statement cannot be referenced in an ORDER BY clause.
Question
The  LIKE \underline { \text { LIKE } } operator is used to indicate a range of values. _________________________
Question
A search condition can be specified in a(n)  SELECT \underline { \text { SELECT } } clause. _________________________
Question
The <>, !=, or ^= operators can be used to search for values that are  not equivalent \underline { \text { not equivalent } } to the specified search condition. _________________________
Question
A greater than or equal to comparison is indicated by the symbols =>\underline {=> } . _________________________
Question
By default, query results are sorted in ascending order based upon the column specified in the ORDER BY clause.
Question
The SORT BY clause is used to present query results in a specific order.
Question
A(n)  clause \underline { \text { clause } } identifies what must exist or a requirement that must be met for a record to be included in the results of a query. _________________________
Question
If a numeric column is being used for comparison against the search condition, the search condition  is enclosed \underline { \text { is enclosed } } in single quotation marks. _________________________
Question
When sorted in descending order, NULL values will be listed first in the results, unless the user specifies otherwise.
Question
An ORDER BY clause can reference a column to be used for sorting based upon its position in the database table.
Question
To find rows containing a NULL value in a specified column, you must use the search condition of = NULL.
Question
Including the keywords NULLS FIRST in the ORDER BY clause will result in NULL values appearing first in the results, regardless of the specified sort sequence.
Question
The maximum number of columns that can be used to sort the results of a query is 52.
Question
If a date column is being used for comparison against the search condition, the search condition is enclosed in  double \underline { \text { double } } quotation marks. _________________________
Question
The first column listed in an ORDER BY clause is considered the primary sort.
Question
The IN logical operator is similar to using OR\underline{OR} . _________________________
Question
An ORDER BY clause can reference a column to be used for sorting based upon its position in the SELECT clause.
Question
When two conditions are joined by the OR\underline{OR} keyword, both conditions must be True for a record to be included in the results. _________________________
Question
Which of the following operators would be most appropriate to determine whether or not the retail price of a book is at least $24.00?

A) LIKE
B) BETWEEN
C) >
D) >=
Question
The \leq symbol is used to search for records containing a value that is less than or equal to the stated search condition. _________________________
Question
The maximum number of columns that can be used to sort data is 25\underline { 25 } _________________________
Question
Which of the following is NOT a comparison operator?

A) >=
B) BETWEEN...AND
C) =
D) NOT
Question
If a user performs a query that restricts the rows returned based upon a specified date, the date must be enclosed in ____.

A) double quotation marks (" ")
B) single quotation marks (' ')
C) parentheses ( )
D) none of the above
Question
A(n) ____ is used to indicate how data should relate to a given search condition.

A) comparison operator
B) logical operator
C) search pattern
D) criteria
Question
The  numeric order \underline { \text { numeric order } } of columns in a SELECT clause can be referenced in the ORDER BY clause. _________________________
Question
The process of retrieving only certain rows based upon a specified condition is known as ____.

A) selection
B) projection
C) retrieval
D) derivation
Question
When using a search pattern, a(n) ?\underline { ? } symbol is used to indicate exactly one character in that position. _________________________
Question
When two conditions are joined by the AND keyword, both conditions must be  FALSE \underline { \text { FALSE } } for a record to be included in the results. _________________________
Question
The  BETWEEN \underline {\text { BETWEEN } } operator is used to determine the rows that match a value in a given list. _________________________
Question
NOT, AND, and OR are  comparison \underline {\text { comparison } } operators. _________________________
Question
When data is sorted in ascending order, NULL values appear  first \underline { \text { first } } in the list. _________________________
Question
Which of the following clauses is used to restrict the rows returned by a query?

A) SELECT
B) FROM
C) WHERE
D) ORDER BY
Question
To indicate that data should be sorted in descending order, use the  DESC \underline {\text { DESC } } keyword. _________________________
Question
A(n)  percent \underline { \text { percent } } sign is used in a search pattern to indicate zero, one, or more characters in a position. _________________________
Question
The  SORT BY \underline { \text { SORT BY } } clause is used for displaying the results of a query in a sorted order. _________________________
Question
When sorting data, the values will be sorted in  ascending \underline { \text { ascending } } order by default. _________________________
Question
The  "equal to" \underline {\text { "equal to" }} comparison operator is used to search for NULL values. _________________________
Question
Which of the following clauses is used to indicate a particular sort sequence for presenting query results?

A) SELECT
B) SORT BY
C) WHERE
D) ORDER BY
Question
To instruct Oracle11g to sort data in descending order, enter ____ after the column name in the WHERE clause.

A) D
B) DES
C) DESC
D) none of the above
Question
Which of the following operators can be used to combine search conditions?

A) AND
B) =
C) IS NOT NULL
D) none of the above
Question
Which of the following search conditions can be used to identify records that have data stored in a column named ColB?

A) ColB IS NOT NULL
B) ColB ^= NULL
C) ColB != NULL
D) all of the above
Question
Which of the following search patterns would find dates occurring only in the year 2003?

A) %03%
B) *03
C) %03
D) _03%
Question
Which of the following is not a valid comparison operator?

A) =>
B) <>
C) ^=
D) none of the above
Question
When the WHERE clause contains multiple types of operators, which of the following is resolved last?

A) arithmetic operations
B) comparison operators
C) logical operators
D) search patterns
Question
When sorting the results in descending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
Question
When sorting the results in ascending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
Question
When the WHERE clause contains multiple types of operators, which of the following is resolved first?

A) arithmetic operations
B) comparison operators
C) logical operators
D) union operators
Question
When sorting the results in descending order, which of the following values will be presented last in the output?

A) numeric
B) character
C) NULL
D) date
Question
To instruct Oracle11g to sort data in ascending order, enter ____ after the column name in the ORDER BY clause.

A) ASC
B) A
C) ASCENDING
D) either a or c
Question
Which of the following search conditions can be used to identify records that do not have data stored in a column named ColB?

A) ColB = NULL
B) ColB IS NOT NULL
C) ColB IS NULL
D) ColB = ' '
Question
Which of the following is a valid comparison operator?

A) !=
B) IN
C) ^=
D) all of the above
Question
Which of the following search patterns could be used to find the word HELLO in Oracle11g?

A) %H%
B) HEL*
C) _EL*
D) %HEL?O
Question
Which of the following is a valid logical operator?

A) NOT
B) AND
C) OR
D) all of the above
Question
Which of the following symbols is a wildcard character that can represent any number of characters in a WHERE clause?

A) asterisk (*)
B) underscore (_)
C) question mark (?)
D) percent sign (%)
Question
When sorting the results in ascending order, which of the following values will be presented last in the output?

A) character
B) numeric
C) NULL
D) date
Question
Which of the following operators is used when the criteria is based upon a search pattern?

A) AND
B) LIKE
C) IS NULL
D) BETWEEN...AND
Question
Which of the following operators can be used to retrieve rows containing NULL values in a specific column?

A) =
B) LIKE
C) NOT
D) none of the above
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/132
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 8: Restricting Rows and Sorting Data
1
Search conditions for data contained in numeric columns must be enclosed in single quotation marks.
False
2
Retrieving only specific rows from a table is a process known as selection.
True
3
The percent sign (%) and underscore (_) symbols can be used with the LIKE comparison operator to create a search pattern.
True
4
The IN comparison operator is used when searching for a pattern of characters.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
5
A NULL value is the same as a blank space.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
6
The BETWEEN...AND comparison operator can be used to specify a range of values as a search condition.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
7
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as FALSE to be included in the query results.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
8
In a WHERE clause, logical operators are evaluated before comparison operators.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
9
Logical operators are evaluated in the order of NOT, AND, and OR.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
10
Using the OR logical operator to combine search conditions based upon the same column is the same as using the IN comparison operator.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
11
NOT, ALL, and OR are all considered logical operators.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
12
Search conditions for data contained in non-numeric columns must be enclosed in double quotation marks.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
13
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as True to be included in the query results.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
14
Although Oracle11g is not case sensitive in regards to keywords, table names, and column names, it is case sensitive when comparing search conditions to the data contained in a database table.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
15
Retrieving only certain rows from a table is known as projection.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
16
The percent sign (%) is used in a search pattern to indicate "exactly one character in this position".
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
17
Comparison operators are used to combine search conditions.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
18
The percent sign (%) and asterisk (*) symbols can be used with the LIKE comparison operator to create a search pattern.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
19
The underscore symbol (_) is used in a search pattern to indicate "exactly one character in this position".
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
20
When two conditions are joined by the AND logical operator, only one of the conditions must be True to be included in the query results.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
21
The process of specifying that certain rows be displayed in the results of a query is known as  selection \underline { \text { selection } } . _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
22
Oracle11g  is case sensitive \underline {\text { is case sensitive } } when comparing data to a search condition. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
23
A column alias that has been defined in the SELECT clause of a SELECT statement cannot be referenced in an ORDER BY clause.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
24
The  LIKE \underline { \text { LIKE } } operator is used to indicate a range of values. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
25
A search condition can be specified in a(n)  SELECT \underline { \text { SELECT } } clause. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
26
The <>, !=, or ^= operators can be used to search for values that are  not equivalent \underline { \text { not equivalent } } to the specified search condition. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
27
A greater than or equal to comparison is indicated by the symbols =>\underline {=> } . _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
28
By default, query results are sorted in ascending order based upon the column specified in the ORDER BY clause.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
29
The SORT BY clause is used to present query results in a specific order.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
30
A(n)  clause \underline { \text { clause } } identifies what must exist or a requirement that must be met for a record to be included in the results of a query. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
31
If a numeric column is being used for comparison against the search condition, the search condition  is enclosed \underline { \text { is enclosed } } in single quotation marks. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
32
When sorted in descending order, NULL values will be listed first in the results, unless the user specifies otherwise.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
33
An ORDER BY clause can reference a column to be used for sorting based upon its position in the database table.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
34
To find rows containing a NULL value in a specified column, you must use the search condition of = NULL.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
35
Including the keywords NULLS FIRST in the ORDER BY clause will result in NULL values appearing first in the results, regardless of the specified sort sequence.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
36
The maximum number of columns that can be used to sort the results of a query is 52.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
37
If a date column is being used for comparison against the search condition, the search condition is enclosed in  double \underline { \text { double } } quotation marks. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
38
The first column listed in an ORDER BY clause is considered the primary sort.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
39
The IN logical operator is similar to using OR\underline{OR} . _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
40
An ORDER BY clause can reference a column to be used for sorting based upon its position in the SELECT clause.
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
41
When two conditions are joined by the OR\underline{OR} keyword, both conditions must be True for a record to be included in the results. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
42
Which of the following operators would be most appropriate to determine whether or not the retail price of a book is at least $24.00?

A) LIKE
B) BETWEEN
C) >
D) >=
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
43
The \leq symbol is used to search for records containing a value that is less than or equal to the stated search condition. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
44
The maximum number of columns that can be used to sort data is 25\underline { 25 } _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
45
Which of the following is NOT a comparison operator?

A) >=
B) BETWEEN...AND
C) =
D) NOT
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
46
If a user performs a query that restricts the rows returned based upon a specified date, the date must be enclosed in ____.

A) double quotation marks (" ")
B) single quotation marks (' ')
C) parentheses ( )
D) none of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
47
A(n) ____ is used to indicate how data should relate to a given search condition.

A) comparison operator
B) logical operator
C) search pattern
D) criteria
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
48
The  numeric order \underline { \text { numeric order } } of columns in a SELECT clause can be referenced in the ORDER BY clause. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
49
The process of retrieving only certain rows based upon a specified condition is known as ____.

A) selection
B) projection
C) retrieval
D) derivation
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
50
When using a search pattern, a(n) ?\underline { ? } symbol is used to indicate exactly one character in that position. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
51
When two conditions are joined by the AND keyword, both conditions must be  FALSE \underline { \text { FALSE } } for a record to be included in the results. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
52
The  BETWEEN \underline {\text { BETWEEN } } operator is used to determine the rows that match a value in a given list. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
53
NOT, AND, and OR are  comparison \underline {\text { comparison } } operators. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
54
When data is sorted in ascending order, NULL values appear  first \underline { \text { first } } in the list. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
55
Which of the following clauses is used to restrict the rows returned by a query?

A) SELECT
B) FROM
C) WHERE
D) ORDER BY
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
56
To indicate that data should be sorted in descending order, use the  DESC \underline {\text { DESC } } keyword. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
57
A(n)  percent \underline { \text { percent } } sign is used in a search pattern to indicate zero, one, or more characters in a position. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
58
The  SORT BY \underline { \text { SORT BY } } clause is used for displaying the results of a query in a sorted order. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
59
When sorting data, the values will be sorted in  ascending \underline { \text { ascending } } order by default. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
60
The  "equal to" \underline {\text { "equal to" }} comparison operator is used to search for NULL values. _________________________
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
61
Which of the following clauses is used to indicate a particular sort sequence for presenting query results?

A) SELECT
B) SORT BY
C) WHERE
D) ORDER BY
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
62
To instruct Oracle11g to sort data in descending order, enter ____ after the column name in the WHERE clause.

A) D
B) DES
C) DESC
D) none of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
63
Which of the following operators can be used to combine search conditions?

A) AND
B) =
C) IS NOT NULL
D) none of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
64
Which of the following search conditions can be used to identify records that have data stored in a column named ColB?

A) ColB IS NOT NULL
B) ColB ^= NULL
C) ColB != NULL
D) all of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
65
Which of the following search patterns would find dates occurring only in the year 2003?

A) %03%
B) *03
C) %03
D) _03%
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
66
Which of the following is not a valid comparison operator?

A) =>
B) <>
C) ^=
D) none of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
67
When the WHERE clause contains multiple types of operators, which of the following is resolved last?

A) arithmetic operations
B) comparison operators
C) logical operators
D) search patterns
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
68
When sorting the results in descending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
69
When sorting the results in ascending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
70
When the WHERE clause contains multiple types of operators, which of the following is resolved first?

A) arithmetic operations
B) comparison operators
C) logical operators
D) union operators
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
71
When sorting the results in descending order, which of the following values will be presented last in the output?

A) numeric
B) character
C) NULL
D) date
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
72
To instruct Oracle11g to sort data in ascending order, enter ____ after the column name in the ORDER BY clause.

A) ASC
B) A
C) ASCENDING
D) either a or c
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
73
Which of the following search conditions can be used to identify records that do not have data stored in a column named ColB?

A) ColB = NULL
B) ColB IS NOT NULL
C) ColB IS NULL
D) ColB = ' '
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
74
Which of the following is a valid comparison operator?

A) !=
B) IN
C) ^=
D) all of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
75
Which of the following search patterns could be used to find the word HELLO in Oracle11g?

A) %H%
B) HEL*
C) _EL*
D) %HEL?O
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
76
Which of the following is a valid logical operator?

A) NOT
B) AND
C) OR
D) all of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
77
Which of the following symbols is a wildcard character that can represent any number of characters in a WHERE clause?

A) asterisk (*)
B) underscore (_)
C) question mark (?)
D) percent sign (%)
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
78
When sorting the results in ascending order, which of the following values will be presented last in the output?

A) character
B) numeric
C) NULL
D) date
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
79
Which of the following operators is used when the criteria is based upon a search pattern?

A) AND
B) LIKE
C) IS NULL
D) BETWEEN...AND
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
80
Which of the following operators can be used to retrieve rows containing NULL values in a specific column?

A) =
B) LIKE
C) NOT
D) none of the above
Unlock Deck
Unlock for access to all 132 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 132 flashcards in this deck.