Deck 4: Single-Table Queries

ملء الشاشة (f)
exit full mode
سؤال
A simple condition has the form: column name,comparison operator,and then either another column name or a value.​
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
A query is a question represented in a way that the DBMS can understand.
سؤال
Preceding a condition by the NOT operator reverses the truth of the original condition.​
سؤال
Instead of including every column in the SELECT clause,you can use an ampersand (&)to indicate that you want to include all columns.​
سؤال
The WHERE clause is used to retrieve rows that satisfy some condition.​
سؤال
When you connect two or more simple conditions with the AND operator,each condition must be listed on a separate line.​
سؤال
You cannot assign names to computed columns.​
سؤال
You can use computed columns in comparisons.​
سؤال
To specify that query results be listed in a specific order,use the SORT BY clause.​
سؤال
When you query a database,there is a defined order in which the results are displayed.​
سؤال
When the OR operator connects simple conditions,the compound condition will be true whenever any one of the simple conditions is true.​
سؤال
SQL requires that you follow special formatting rules.​
سؤال
When data is sorted on two columns,the more important column is called the major sort key.​
سؤال
An arithmetic column is a column that does not exist in the database but can be computed using data in existing columns.​
سؤال
To sort records in descending order,follow the name of the sort key with the REVERSE operator.​
سؤال
The BETWEEN operator is an essential feature of SQL.​
سؤال
In a SELECT statement,the FROM clause and the WHERE clause (when used)must appear on separate lines.​
سؤال
The only arithmetic operators that can be used in SELECT statements are + for addition and - for subtraction.​
سؤال
After the word FROM in a SELECT statement,you list any conditions (restrictions)that apply to the data you want to retrieve.​
سؤال
All SELECT statements require a WHERE clause.​
سؤال
In a nested query,the outer query is evaluated first.​
سؤال
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
سؤال
Which of the following operators can be used for a column computation?​

A)+
B)​^
C)**
D)​All of the above
سؤال
The DISTINCT operator is useful when used in conjunction with the COUNT function.​
سؤال
The GROUP BY clause sorts the data in a particular order.​
سؤال
Sometimes a condition involves a column that can accept null values.​
سؤال
The ____ operator is inclusive,meaning that a value equal to either end would be selected.​

A)AND
B)​BETWEEN
C)OR
D)​NOT
سؤال
It is possible to place one query inside another.​
سؤال
In SQL,you use the ____ command to query a database.​

A)WHERE
B)​SELECT
C)FROM
D)​SET
سؤال
You form compound conditions by connecting two or more simple conditions using the ____ operator.​

A)AND
B)​OR
C)NOT
D)​All of the above
سؤال
The MIN function determines the minimum value in a column.​
سؤال
The UNIQUE operator eliminates duplicate values in a query.​
سؤال
It is possible to use both a WHERE clause and a HAVING clause in a SELECT statement.​
سؤال
Preceding a condition by the ____ operator reverses the truth of the original condition.​

A)REVERSE
B)​NOT
C)NULL
D)​OR
سؤال
The COUNT function only applies to columns with numeric values.​
سؤال
The WHERE clause applies to both rows and groups.​
سؤال
The HAVING clause is used to restrict groups that are included in a query result.​
سؤال
The ____ operator specifies a range of values in a condition.​

A)LIKE
B)​BETWEEN
C)DISTINCT
D)​GROUP
سؤال
Aggregate functions apply to groups of rows.​
سؤال
In the SELECT clause,you can use the ____ symbol to indicate that you want to include all columns.​

A)\
B)​/
C)*
D)​?
سؤال
The ____ function calculates a total of the values in a column.​

A)TOTAL
B)​CALCULATE
C)SUM
D)​ADD
سؤال
A(n)____________________ clause provides a concise way of phrasing certain conditions.​
سؤال
The ____ clause lets you group data on a particular column.​

A)GROUP
B)​GROUP BY
C)SET GROUP
D)​GROUPING
سؤال
You use the ____ clause to list data in a specific order.​

A)ORDER
B)​SET ORDER
C)ORDER BY
D)​LIST BY
سؤال
You can use the ____ operator followed by a collection of values to provide a concise way of phrasing certain conditions.​

A)LIKE
B)​CONTAIN
C)VALUES
D)​IN
سؤال
When you use the ____ function,you can use the asterisk (*)to represent any column.​

A)SUM
B)​COUNT
C)MAX
D)​MIN
سؤال
____________________ conditions are formed by connecting two or more simple conditions.​
سؤال
The ____ wildcard symbol represents any individual character.​

A)%
B)​_
C)/
D)​\
سؤال
You use the ____________________ clause to retrieve rows that satisfy some condition.​
سؤال
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
سؤال
The ____________________ operator uses one or more wildcard characters to test for a pattern match.​
سؤال
The ____ clause is used to restrict the groups that will be included in a query result.​

A)LIKE
B)​HAVING
C)WHERE
D)​HAVE
سؤال
When the ____________________ operator connects simple conditions,all the simple conditions must be true in order for the compound condition to be true.​
سؤال
The ____ operator uses one or more wildcard characters to test for a pattern match.​

A)PATTERN
B)​LIKE
C)MATCH
D)​SIMILAR
سؤال
In SQL for Oracle and for SQL Server,the ____ symbol is used as a wildcard to represent any collection of characters.​

A)*
B)​%
C)?
D)​!
سؤال
A(n)____________________ column is a column that does not exist in the database but can be computed using data in the existing columns.​
سؤال
The ____ function determines the number of rows in a table.​

A)ROW
B)​CALCULATE
C)COUNT
D)​NUMBER
سؤال
A(n)____________________ is simply a question represented in a way that the DBMS can understand.​
سؤال
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 assign a name to a computed column by following the computation with the word ____________________ and the desired name.​
سؤال
You can use the ____________________ clause to limit the groups that are included.​
سؤال
The column on which data is to be sorted is called a sort ____________________.​
سؤال
When you use the MAX function,SQL ignores any ____________________ value(s)in the column and eliminates them from the computations.​
سؤال
In SQL,you specify the order of data in query results by using the ____________________ clause.​
سؤال
When you need to sort data on two columns,the more important column is called the ____________________ sort key.​
سؤال
Compare the WHERE and HAVING clauses.​
سؤال
When you use the ____________________ function,you must specify the column to total,and the column data type must be numeric.​
سؤال
SQL has special functions,called ____________________ functions,to calculate sums,averages,counts,maximum values,and minimum values.​
سؤال
The ____________________ operator finds rows that contain a null value in the specified column.​
سؤال
The ____________________ operator eliminates duplicate values in the query results.​
سؤال
____________________ creates groups of rows that share some common characteristic.​
سؤال
The inner query in a nested query is called a(n)____________________.​
سؤال
Describe simple and compound conditions.​
سؤال
How do you construct the SELECT query?​
سؤال
To sort records in descending order,follow the name of the sort key with the ____________________ operator.​
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/75
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 4: Single-Table Queries
1
A simple condition has the form: column name,comparison operator,and then either another column name or a value.​
True
2
A query is a question represented in a way that the DBMS can understand.
True
3
Preceding a condition by the NOT operator reverses the truth of the original condition.​
True
4
Instead of including every column in the SELECT clause,you can use an ampersand (&)to indicate that you want to include all columns.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
5
The WHERE clause is used to retrieve rows that satisfy some condition.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
6
When you connect two or more simple conditions with the AND operator,each condition must be listed on a separate line.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
7
You cannot assign names to computed columns.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
8
You can use computed columns in comparisons.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
9
To specify that query results be listed in a specific order,use the SORT BY clause.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
10
When you query a database,there is a defined order in which the results are displayed.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
11
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
12
SQL requires that you follow special formatting rules.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
13
When data is sorted on two columns,the more important column is called the major sort key.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
14
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
15
To sort records in descending order,follow the name of the sort key with the REVERSE operator.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
16
The BETWEEN operator is an essential feature of SQL.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
17
In a SELECT statement,the FROM clause and the WHERE clause (when used)must appear on separate lines.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
18
The only arithmetic operators that can be used in SELECT statements are + for addition and - for subtraction.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
19
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
20
All SELECT statements require a WHERE clause.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
21
In a nested query,the outer query is evaluated first.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
22
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
23
Which of the following operators can be used for a column computation?​

A)+
B)​^
C)**
D)​All of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
24
The DISTINCT operator is useful when used in conjunction with the COUNT function.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
25
The GROUP BY clause sorts the data in a particular order.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
26
Sometimes a condition involves a column that can accept null values.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
27
The ____ operator is inclusive,meaning that a value equal to either end would be selected.​

A)AND
B)​BETWEEN
C)OR
D)​NOT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
28
It is possible to place one query inside another.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
29
In SQL,you use the ____ command to query a database.​

A)WHERE
B)​SELECT
C)FROM
D)​SET
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
30
You form compound conditions by connecting two or more simple conditions using the ____ operator.​

A)AND
B)​OR
C)NOT
D)​All of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
31
The MIN function determines the minimum value in a column.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
32
The UNIQUE operator eliminates duplicate values in a query.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
33
It is possible to use both a WHERE clause and a HAVING clause in a SELECT statement.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
34
Preceding a condition by the ____ operator reverses the truth of the original condition.​

A)REVERSE
B)​NOT
C)NULL
D)​OR
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
35
The COUNT function only applies to columns with numeric values.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
36
The WHERE clause applies to both rows and groups.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
37
The HAVING clause is used to restrict groups that are included in a query result.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
38
The ____ operator specifies a range of values in a condition.​

A)LIKE
B)​BETWEEN
C)DISTINCT
D)​GROUP
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
39
Aggregate functions apply to groups of rows.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
40
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
41
The ____ function calculates a total of the values in a column.​

A)TOTAL
B)​CALCULATE
C)SUM
D)​ADD
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
42
A(n)____________________ clause provides a concise way of phrasing certain conditions.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
43
The ____ clause lets you group data on a particular column.​

A)GROUP
B)​GROUP BY
C)SET GROUP
D)​GROUPING
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
44
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
45
You can use the ____ operator followed by a collection of values to provide a concise way of phrasing certain conditions.​

A)LIKE
B)​CONTAIN
C)VALUES
D)​IN
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
46
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
47
____________________ conditions are formed by connecting two or more simple conditions.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
48
The ____ wildcard symbol represents any individual character.​

A)%
B)​_
C)/
D)​\
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
49
You use the ____________________ clause to retrieve rows that satisfy some condition.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
50
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
51
The ____________________ operator uses one or more wildcard characters to test for a pattern match.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
52
The ____ clause is used to restrict the groups that will be included in a query result.​

A)LIKE
B)​HAVING
C)WHERE
D)​HAVE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
53
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
54
The ____ operator uses one or more wildcard characters to test for a pattern match.​

A)PATTERN
B)​LIKE
C)MATCH
D)​SIMILAR
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
55
In SQL for Oracle and for SQL Server,the ____ symbol is used as a wildcard to represent any collection of characters.​

A)*
B)​%
C)?
D)​!
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
56
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
57
The ____ function determines the number of rows in a table.​

A)ROW
B)​CALCULATE
C)COUNT
D)​NUMBER
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
58
A(n)____________________ is simply a question represented in a way that the DBMS can understand.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
59
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
60
You can assign a name to a computed column by following the computation with the word ____________________ and the desired name.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
61
You can use the ____________________ clause to limit the groups that are included.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
62
The column on which data is to be sorted is called a sort ____________________.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
63
When you use the MAX function,SQL ignores any ____________________ value(s)in the column and eliminates them from the computations.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
64
In SQL,you specify the order of data in query results by using the ____________________ clause.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
65
When you need to sort data on two columns,the more important column is called the ____________________ sort key.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
66
Compare the WHERE and HAVING clauses.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 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
SQL has special functions,called ____________________ functions,to calculate sums,averages,counts,maximum values,and minimum values.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
69
The ____________________ operator finds rows that contain a null value in the specified column.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
70
The ____________________ operator eliminates duplicate values in the query results.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
71
____________________ creates groups of rows that share some common characteristic.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
72
The inner query in a nested query is called a(n)____________________.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
73
Describe simple and compound conditions.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
74
How do you construct the SELECT query?​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
75
To sort records in descending order,follow the name of the sort key with the ____________________ operator.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.