Deck 4: Single-Table Queries

ملء الشاشة (f)
exit full mode
سؤال
When you connect two or more simple conditions with the AND operator, each condition must be listed on a separate line.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
To specify that query results be listed in a specific order, use the SORT BY clause.
سؤال
Sometimes a condition involves a column that can accept null values.
سؤال
The GROUP BY clause sorts the data in a particular order.
سؤال
The only arithmetic operators that can be used in SELECT statements are + for addition and - for subtraction.
سؤال
MySQL supports only the version of the "not equal to" comparison operator.
سؤال
The HAVING clause is used to restrict groups.
سؤال
In a SELECT statement, the FROM clause and the WHERE clause (when used)must appear on separate lines.
سؤال
The MIN function determines the minimum value in a row.
سؤال
It is possible to place one query inside another.
سؤال
The WHERE clause applies to both rows and groups.
سؤال
When you query a database, there is a defined order in which the results are displayed.
سؤال
Aggregate functions apply to groups of rows.
سؤال
Preceding a condition by the NOT operator reverses the truth of the original condition.
سؤال
There are no special formatting rules in MySQL.
سؤال
You cannot assign names to computed columns.
سؤال
The BETWEEN operator is an essential feature of SQL.
سؤال
An arithmetic column is a column that does not exist in the database but can be computed using data in existing columns.
سؤال
All SELECT statements require a WHERE clause.
سؤال
You cannot change the order of the columns to be displayed in query results.
سؤال
The basic form of the SQL SELECT command is ____.

A)FROM-SELECT-WHERE
B)SELECT-FROM-WHERE
C)FROM-WHERE-SELECT
D)WHERE-SELECT-FROM
سؤال
When data is sorted on two columns, the more important column is called the major sort key.
سؤال
The ____ wildcard symbol represents any individual character.

A)%
B)_
C)/
D)\
سؤال
It is possible to use both a WHERE clause and a HAVING clause in a SELECT statement.
سؤال
The ____ operator is inclusive, meaning that a value equal to either value would be selected.

A)AND
B)BETWEEN
C)OR
D)NOT
سؤال
After the word FROM in a SELECT statement, you list any conditions (restrictions)that apply to the data you want to retrieve.
سؤال
A simple condition has the form: column name, comparison operator, and then either another column name or a value.
سؤال
You can use computed columns in comparisons.
سؤال
The DISTINCT operator is useful when used in conjunction with the COUNT function.
سؤال
The UNIQUE operator eliminates duplicate values in a query.
سؤال
In SQL, the ____ symbol is used as a wildcard to represent any collection of characters.

A)*
B)%
C)?
D)!
سؤال
You form compound conditions by connecting two or more simple conditions using the ____ operators.

A)AND
B)OR
C)NOT
D)All of the above
سؤال
The COUNT function only applies to columns with numeric values.
سؤال
In a nested query, the outquery is evaluated first .
سؤال
To sort records in descending order, follow the name of the sort key with the REVERSE operator.
سؤال
When the OR operator connects simple conditions, the compound condition will be true whenever any one of the simple conditions is true.
سؤال
In the SELECT clause, you can use the ____ symbol to indicate that you want to include all columns.

A)\
B)/
C)*
D)?
سؤال
In SQL, you use the ____ command to query a database.

A)WHERE
B)SELECT
C)FROM
D)SET
سؤال
The WHERE clause is used to limit the rows that are included in a query's result.
سؤال
Which of the following operators can be used for a column computation?

A)+
B)^
C)**
D)All of the above
سؤال
You use the ____________________ clause to retrieve rows that satisfy some condition.
سؤال
The ____ function calculates a total of the values in a column.

A)TOTAL
B)CALCULATE
C)SUM
D)ADD
سؤال
Preceding a condition by the ____ operator reverses the truth of the original condition.

A)><
B)NOT
C)NULL
D)OR
سؤال
The ____________________ operator uses one or more wildcard characters to test for a pattern match.
سؤال
A(n)____________________ clause provides a concise way of phrasing certain conditions.
سؤال
A(n)____________________ is simply a question represented in a way that the DBMS can understand.
سؤال
The ____ function determines the number of rows in a table.

A)ROW
B)CALCULATE
C)COUNT
D)NUMBER
سؤال
To include spaces in computed column names, enclose the computed column name in ____.

A)single quotes
B)square brackets
C)parentheses
D)curly braces
سؤال
A(n)____________________ column is a column that does not exist in the database but can be computed using data in the existing columns.
سؤال
In MySQL, to retrieve character data that exactly matches the case used in a WHERE clause, use the ____ keyword.

A)BINARY
B)EXACT
C)MATCH
D)CASE
سؤال
When you use the ____ function, you can use the asterisk (*)to represent any column.

A)SUM
B)COUNT
C)MAX
D)MIN
سؤال
The ____ clause is used to restrict the groups that are included.

A)LIKE
B)HAVING
C)WHERE
D)HAVE
سؤال
The ____ operator specifies a range of values in a condition.

A)LIKE
B)BETWEEN
C)DISTINCT
D)GROUP
سؤال
The ____ operator finds rows that do not contain a null value in the specified column

A)IS NULL
B)NOT NULL
C)!NULL
D)IS NOT NULL
سؤال
In MySQL, you specify the results order by using the ____________________ clause.
سؤال
The ____ clause lets you group data on a particular column.

A)GROUP
B)GROUP BY
C)SET GROUP
D)GROUPING
سؤال
When the ____________________ operator connects simple conditions, all the simple conditions must be true in order for the compound condition to be true.
سؤال
When you need to sort data on two columns, the less important column is called the ____ sort key.

A)double
B)primary
C)minor
D)foreign
سؤال
You can also assign a name to a computed column by following the computation with the word ____________________ and the desired name.
سؤال
You use the ____ clause to list data in a specific order.

A)ORDER
B)SET ORDER
C)ORDER BY
D)LIST BY
سؤال
MySQL has special functions, called ____________________ functions, to calculate sums, averages, counts, maximum values, and minimum values.
سؤال
When you use the MAX function, SQL ignores any ____________________ value(s)in the column and eliminates them from the computations.
سؤال
The inner query in a nested query is called a(n)____________________.
سؤال
The column on which data is to be sorted is called a sort ____________________.
سؤال
The ____________________ operator finds rows that contain a null value in the specified column.
سؤال
Describe simple and compound conditions.
سؤال
When you use the ____________________ function, you must specify the column to total, and the column data type must be numeric.
سؤال
____________________ creates groups of rows that share some common characteristic.
سؤال
You can use the ____________________ clause to limit the groups that are included.
سؤال
When you use the SUM function, the column data type must be ____________________.
سؤال
____________________ conditions are formed by connecting two or more simple conditions.
سؤال
How do you construct the SELECT query?
سؤال
A ____________________ query is one query inside another.
سؤال
When you need to sort data on two columns, the more important column is called the ____________________ sort key.
سؤال
Compare the WHERE and HAVING clauses.
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/75
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 4: Single-Table Queries
1
When you connect two or more simple conditions with the AND operator, each condition must be listed on a separate line.
False
2
To specify that query results be listed in a specific order, use the SORT BY clause.
False
3
Sometimes a condition involves a column that can accept null values.
True
4
The GROUP BY clause sorts the data in a particular order.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
5
The only arithmetic operators that can be used in SELECT statements are + for addition and - for subtraction.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
6
MySQL supports only the version of the "not equal to" comparison operator.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
7
The HAVING clause is used to restrict groups.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
8
In a SELECT statement, the FROM clause and the WHERE clause (when used)must appear on separate lines.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
9
The MIN function determines the minimum value in a row.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
10
It is possible to place one query inside another.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
11
The WHERE clause applies to both rows and groups.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
12
When you query a database, there is a defined order in which the results are displayed.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
13
Aggregate functions apply to groups of rows.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
14
Preceding a condition by the NOT operator reverses the truth of the original condition.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
15
There are no special formatting rules in MySQL.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
16
You cannot assign names to computed columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
17
The BETWEEN operator is an essential feature of SQL.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
18
An arithmetic column is a column that does not exist in the database but can be computed using data in existing columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
19
All SELECT statements require a WHERE clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
20
You cannot change the order of the columns to be displayed in query results.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
21
The basic form of the SQL SELECT command is ____.

A)FROM-SELECT-WHERE
B)SELECT-FROM-WHERE
C)FROM-WHERE-SELECT
D)WHERE-SELECT-FROM
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
22
When data is sorted on two columns, the more important column is called the major sort key.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
23
The ____ wildcard symbol represents any individual character.

A)%
B)_
C)/
D)\
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
24
It is possible to use both a WHERE clause and a HAVING clause in a SELECT statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
25
The ____ operator is inclusive, meaning that a value equal to either value would be selected.

A)AND
B)BETWEEN
C)OR
D)NOT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
26
After the word FROM in a SELECT statement, you list any conditions (restrictions)that apply to the data you want to retrieve.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
27
A simple condition has the form: column name, comparison operator, and then either another column name or a value.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
28
You can use computed columns in comparisons.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
29
The DISTINCT operator is useful when used in conjunction with the COUNT function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
30
The UNIQUE operator eliminates duplicate values in a query.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
31
In SQL, the ____ symbol is used as a wildcard to represent any collection of characters.

A)*
B)%
C)?
D)!
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
32
You form compound conditions by connecting two or more simple conditions using the ____ operators.

A)AND
B)OR
C)NOT
D)All of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
33
The COUNT function only applies to columns with numeric values.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
34
In a nested query, the outquery is evaluated first .
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
35
To sort records in descending order, follow the name of the sort key with the REVERSE operator.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
36
When the OR operator connects simple conditions, the compound condition will be true whenever any one of the simple conditions is true.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
37
In the SELECT clause, you can use the ____ symbol to indicate that you want to include all columns.

A)\
B)/
C)*
D)?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
38
In SQL, you use the ____ command to query a database.

A)WHERE
B)SELECT
C)FROM
D)SET
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
39
The WHERE clause is used to limit the rows that are included in a query's result.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
40
Which of the following operators can be used for a column computation?

A)+
B)^
C)**
D)All of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
41
You use the ____________________ clause to retrieve rows that satisfy some condition.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
42
The ____ function calculates a total of the values in a column.

A)TOTAL
B)CALCULATE
C)SUM
D)ADD
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
43
Preceding a condition by the ____ operator reverses the truth of the original condition.

A)><
B)NOT
C)NULL
D)OR
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
44
The ____________________ operator uses one or more wildcard characters to test for a pattern match.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
45
A(n)____________________ clause provides a concise way of phrasing certain conditions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
46
A(n)____________________ is simply a question represented in a way that the DBMS can understand.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
47
The ____ function determines the number of rows in a table.

A)ROW
B)CALCULATE
C)COUNT
D)NUMBER
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
48
To include spaces in computed column names, enclose the computed column name in ____.

A)single quotes
B)square brackets
C)parentheses
D)curly braces
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
49
A(n)____________________ column is a column that does not exist in the database but can be computed using data in the existing columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
50
In MySQL, to retrieve character data that exactly matches the case used in a WHERE clause, use the ____ keyword.

A)BINARY
B)EXACT
C)MATCH
D)CASE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
51
When you use the ____ function, you can use the asterisk (*)to represent any column.

A)SUM
B)COUNT
C)MAX
D)MIN
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
52
The ____ clause is used to restrict the groups that are included.

A)LIKE
B)HAVING
C)WHERE
D)HAVE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
53
The ____ operator specifies a range of values in a condition.

A)LIKE
B)BETWEEN
C)DISTINCT
D)GROUP
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
54
The ____ operator finds rows that do not contain a null value in the specified column

A)IS NULL
B)NOT NULL
C)!NULL
D)IS NOT NULL
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
55
In MySQL, you specify the results order by using the ____________________ clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
56
The ____ clause lets you group data on a particular column.

A)GROUP
B)GROUP BY
C)SET GROUP
D)GROUPING
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
57
When the ____________________ operator connects simple conditions, all the simple conditions must be true in order for the compound condition to be true.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
58
When you need to sort data on two columns, the less important column is called the ____ sort key.

A)double
B)primary
C)minor
D)foreign
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
59
You can also assign a name to a computed column by following the computation with the word ____________________ and the desired name.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
60
You use the ____ clause to list data in a specific order.

A)ORDER
B)SET ORDER
C)ORDER BY
D)LIST BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
61
MySQL has special functions, called ____________________ functions, to calculate sums, averages, counts, maximum values, and minimum values.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
62
When you use the MAX function, SQL ignores any ____________________ value(s)in the column and eliminates them from the computations.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
63
The inner query in a nested query is called a(n)____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
64
The column on which data is to be sorted is called a sort ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
65
The ____________________ operator finds rows that contain a null value in the specified column.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
66
Describe simple and compound conditions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
67
When you use the ____________________ function, you must specify the column to total, and the column data type must be numeric.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
68
____________________ creates groups of rows that share some common characteristic.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
69
You can use the ____________________ clause to limit the groups that are included.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
70
When you use the SUM function, the column data type must be ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
71
____________________ conditions are formed by connecting two or more simple conditions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
72
How do you construct the SELECT query?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
73
A ____________________ query is one query inside another.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
74
When you need to sort data on two columns, the more important column is called the ____________________ sort key.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
75
Compare the WHERE and HAVING clauses.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.