Deck 7: Introduction to Structured Query Language Sql

ملء الشاشة (f)
exit full mode
سؤال
You can select partial table contents by naming the desired fields and by placing restrictions on the rows to be included in the output.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
Some RDBMSs, such as Microsoft Access, automatically make the necessary conversions to eliminate case sensitivity.
سؤال
The COMMIT command does not permanently save all changes. In order to do that, you must use SAVE.
سؤال
All SQL commands must be issued on a single line.
سؤال
Date procedures are often more software-specific than other SQL procedures.
سؤال
Most SQL implementations yield case-insensitive searches.
سؤال
Numeric functions take one numeric parameter and return one value.
سؤال
SQL allows the use of logical restrictions on its inquiries such as OR, AND, and NOT.
سؤال
Comparison operators cannot be used to place restrictions on character-based attributes.
سؤال
An alias cannot be used when a table is required to be joined to itself in a recursive query.
سؤال
The COUNT function is designed to tally the number of non-null "values" of an attribute, and is often used in conjunction with the DISTINCT clause.
سؤال
You cannot insert a row containing a null attribute value using SQL.
سؤال
Oracle users can use the Access QBE (query by example) query generator.
سؤال
The conditional LIKE must be used in conjunction with wildcard characters.
سؤال
String comparisons are made from left to right.
سؤال
The ANSI SQL standards are also accepted by the ISO.
سؤال
A database language enables the user to perform complex queries designed to transform the raw data into useful information.
سؤال
ANSI-standard SQL allows the use of special operators in conjunction with the WHERE clause.
سؤال
Although SQL commands can be grouped together on a single line, complex command sequences are best shown on separate lines, with space between the SQL command and the command's components.
سؤال
SQL is considered difficult to learn; its command set has a vocabulary of more than 300 words.
سؤال
A(n) _____ join performs a relational product (also known as the Cartesian product) of two tables.

A) full
B) cross
C) natural
D) equi-
سؤال
The special operator used to check whether an attribute value is within a range of values is _____.

A) BETWEEN
B) NULL
C) LIKE
D) IN
سؤال
Which comparison operator indicates a value isnot equal?

A) <
B) <=
C) >=
D) <>
سؤال
What type of command does this SQL statement use? <strong>What type of command does this SQL statement use?  </strong> A) set operator B) natural join C) old-style join D) procedural statement <div style=padding-top: 35px>

A) set operator
B) natural join
C) "old-style" join
D) procedural statement
سؤال
The SQL data manipulation command HAVING:

A) restricts the selection of rows based on a conditional expression.
B) restricts the selection of grouped rows based on a condition.
C) modifies an attribute's values in one or more table's rows.
D) groups the selected rows based on one or more attributes.
سؤال
The _____ command defines a default value for a column when no value is given.

A) CHECK
B) UNIQUE
C) NOT NULL
D) DEFAULT
سؤال
A(n) _____ join returns not only the rows matching the join condition (that is, rows with matching values in the common columns) but also the rows with unmatched values.

A) outer
B) inner
C) equi-
D) cross
سؤال
Which query is used to list a unique value for V_CODE, where the list will produce only a list of those values that are different from one another?

A) SELECT ONLY V_CODE
FROM PRODUCT;
B) SELECT UNIQUE V_CODE
FROM PRODUCT;
C) SELECT DIFFERENT V_CODE
FROM PRODUCT;
D) SELECT DISTINCT V_CODE
FROM PRODUCT;
سؤال
A(n) _____ join will select only the rows with matching values in the common attribute(s).

A) natural
B) outer
C) full
D) cross
سؤال
How many rows would be returned from a cross join of tables A and B, if A contains 8 rows and B contains 18?

A) 8
B) 18
C) 26
D) 144
سؤال
When using a(n) _____ join, only rows from the tables that match on a common value are returned.

A) full
B) outer
C) inner
D) set
سؤال
A(n) _____ query specifies which data should be retrieved and how it should be filtered, aggregated, and displayed.

A) INSERT
B) SELECT
C) COMMIT
D) UPDATE
سؤال
The special operator used to check whether an attribute value matches a given string pattern is _____.

A) BETWEEN
B) IS NULL
C) LIKE
D) IN
سؤال
If a designer wishes to create an inner join, but the two tables do not have a commonly named attribute, he can use a(n) _____ clause.

A) OF
B) USING
C) HAS
D) JOIN ON
سؤال
The syntax for a left outer join is _____.

A) SELECT     column-list
FROM        table1 OUTER JOIN table2 LEFT
WHERE     join-condition
B) SELECT     column-list
FROM table1 LEFT [OUTER] JOIN table2
ON join-condition
C) SELECT     column-list
WHERE     LEFT table1 = table
D) SELECT    column-list
FROM       table1 LEFT table2 [JOIN]
WHERE     join-condition
سؤال
The SQL command that allows a user to permanently save data changes is _____.

A) INSERT
B) SELECT
C) COMMIT
D) UPDATE
سؤال
The SQL aggregate function that gives the number of rows containing non-null values for a given column is _____.

A) COUNT
B) MIN
C) MAX
D) SUM
سؤال
According to the rules of precedence, which of the following computations should be completed first?

A) Additions and subtractions
B) Multiplications and divisions
C) Operations within parentheses
D) Power operations
سؤال
The _____ command restricts the selection of grouped rows based on a condition.

A) DISPLAY
B) HAVING
C) FROM
D) CONVERT
سؤال
A(n) _____ is an alternate name given to a column or table in any SQL statement.

A) alias
B) data type
C) stored function
D) trigger
سؤال
A(n) _____ order sequence is a multilevel ordered sequence that can be created easily by listing several attributes, separated by commas, after the ORDER BY clause.
سؤال
The Oracle _____ function compares an attribute or expression with a series of values and returns an associated value or a default value if no match is found.

A) NVL
B) TO_CHAR
C) DECODE
D) CONVERT
سؤال
When using the Oracle TO_DATE function, the code _____ represents a three-letter month name.

A) MON
B) MM3
C) MONTH
D) MM
سؤال
A(n) _____ character is a symbol that can be used as a general substitute for other characters or commands.
سؤال
An alias is especially useful when a table must be joined to itself in a(n) _____ query.
سؤال
In Oracle, the _____ function converts a date to a character string.

A) CONVERT()
B) TO_DATE
C) TO_CHAR()
D) TO_STRING()
سؤال
_____ is a relational set operator.

A) EXCEPT
B) PLUS
C) ALL
D) EXISTS
سؤال
_____ is a string function that returns the number of characters in a string value.

A) LENGTH
B) SUBSTRING
C) CONCAT
D) UCASE
سؤال
A(n) _____ is a query that is embedded (or nested) inside another query.

A) alias
B) operator
C) subquery
D) view
سؤال
The _____ function returns the current system date in MS Access.

A) TO_DATE()
B) SYSDATE()
C) DATE()
D) TODAY()
سؤال
Which is a feature of a correlated subquery?

A) The inner subquery executes first.
B) The outer subquery initiates the process of execution in a subquery.
C) The inner subquery initiates the process of execution in a subquery.
D) The outer subquery executes independent of the inner subquery.
سؤال
In the SQL environment, the word _____ covers both questions and actions.
سؤال
The _____ specification is used to avoid having duplicated values in a column.
سؤال
A specialty field in mathematics, known as _____ algebra, is dedicated to the use of logical operators.
سؤال
In SQL, all _____ expressions evaluate to true or false.
سؤال
The _____ command, coupled with appropriate search conditions, is an incredibly powerful tool that enables a user to transform data into information.
سؤال
The _____ condition is generally composed of an equality comparison between the foreign key and the primary key of related tables.
سؤال
The special operator used to check whether a subquery returns any rows is _____.

A) BETWEEN
B) EXISTS
C) LIKE
D) IN
سؤال
In subquery terminology, the first query in the SQL statement is known as the _____ query.

A) outer
B) left
C) inner
D) base
سؤال
The basic SQL vocabulary has fewer than _____words.
سؤال
What is a subquery? What is always executed first?
سؤال
The _____statement in SQL combines rows from two queries and returns only the rows that appear in the first set but not in the second.
سؤال
_____ functions allow you to take a value of a given data type and convert it to the equivalent value in another data type.
سؤال
The _____ operator could be used in place of INTERSECT if the DBMS does not support it.
سؤال
"_____" means that the names of the relation attributes must be the same and their data types must be alike.
سؤال
The syntax of theEXCEPT statement in Oracle is _____.
سؤال
What are the wildcard characters that are used with the LIKE command? Provide one or more examples of each.
سؤال
A(n) _____, also known as a nested query or an inner query, is a query that is embedded (or nested) inside another query.
سؤال
Describe the important features and applications of SQL functions.
سؤال
The _____ clause of the GROUP BY statement operates very much like the WHERE clause in the SELECT statement.
سؤال
Rows can be grouped into smaller collections quickly and easily using the _____ clause within the SELECT statement.
سؤال
The _____ operator could be used in place of EXCEPT (MINUS) if the DBMS does not support it.
سؤال
DATE() and SYSDATE are special functions that return today's date in MS Access and _____, respectively.
سؤال
Explain the SQL function categories.
سؤال
What are the four different types of results that can be returned from a subquery?
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/75
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 7: Introduction to Structured Query Language Sql
1
You can select partial table contents by naming the desired fields and by placing restrictions on the rows to be included in the output.
True
2
Some RDBMSs, such as Microsoft Access, automatically make the necessary conversions to eliminate case sensitivity.
True
3
The COMMIT command does not permanently save all changes. In order to do that, you must use SAVE.
False
4
All SQL commands must be issued on a single line.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
5
Date procedures are often more software-specific than other SQL procedures.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
6
Most SQL implementations yield case-insensitive searches.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
7
Numeric functions take one numeric parameter and return one value.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
8
SQL allows the use of logical restrictions on its inquiries such as OR, AND, and NOT.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
9
Comparison operators cannot be used to place restrictions on character-based attributes.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
10
An alias cannot be used when a table is required to be joined to itself in a recursive query.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
11
The COUNT function is designed to tally the number of non-null "values" of an attribute, and is often used in conjunction with the DISTINCT clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
12
You cannot insert a row containing a null attribute value using SQL.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
13
Oracle users can use the Access QBE (query by example) query generator.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
14
The conditional LIKE must be used in conjunction with wildcard characters.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
15
String comparisons are made from left to right.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
16
The ANSI SQL standards are also accepted by the ISO.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
17
A database language enables the user to perform complex queries designed to transform the raw data into useful information.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
18
ANSI-standard SQL allows the use of special operators in conjunction with the WHERE clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
19
Although SQL commands can be grouped together on a single line, complex command sequences are best shown on separate lines, with space between the SQL command and the command's components.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
20
SQL is considered difficult to learn; its command set has a vocabulary of more than 300 words.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
21
A(n) _____ join performs a relational product (also known as the Cartesian product) of two tables.

A) full
B) cross
C) natural
D) equi-
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
22
The special operator used to check whether an attribute value is within a range of values is _____.

A) BETWEEN
B) NULL
C) LIKE
D) IN
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
23
Which comparison operator indicates a value isnot equal?

A) <
B) <=
C) >=
D) <>
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
24
What type of command does this SQL statement use? <strong>What type of command does this SQL statement use?  </strong> A) set operator B) natural join C) old-style join D) procedural statement

A) set operator
B) natural join
C) "old-style" join
D) procedural statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
25
The SQL data manipulation command HAVING:

A) restricts the selection of rows based on a conditional expression.
B) restricts the selection of grouped rows based on a condition.
C) modifies an attribute's values in one or more table's rows.
D) groups the selected rows based on one or more attributes.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
26
The _____ command defines a default value for a column when no value is given.

A) CHECK
B) UNIQUE
C) NOT NULL
D) DEFAULT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
27
A(n) _____ join returns not only the rows matching the join condition (that is, rows with matching values in the common columns) but also the rows with unmatched values.

A) outer
B) inner
C) equi-
D) cross
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
28
Which query is used to list a unique value for V_CODE, where the list will produce only a list of those values that are different from one another?

A) SELECT ONLY V_CODE
FROM PRODUCT;
B) SELECT UNIQUE V_CODE
FROM PRODUCT;
C) SELECT DIFFERENT V_CODE
FROM PRODUCT;
D) SELECT DISTINCT V_CODE
FROM PRODUCT;
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
29
A(n) _____ join will select only the rows with matching values in the common attribute(s).

A) natural
B) outer
C) full
D) cross
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
30
How many rows would be returned from a cross join of tables A and B, if A contains 8 rows and B contains 18?

A) 8
B) 18
C) 26
D) 144
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
31
When using a(n) _____ join, only rows from the tables that match on a common value are returned.

A) full
B) outer
C) inner
D) set
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
32
A(n) _____ query specifies which data should be retrieved and how it should be filtered, aggregated, and displayed.

A) INSERT
B) SELECT
C) COMMIT
D) UPDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
33
The special operator used to check whether an attribute value matches a given string pattern is _____.

A) BETWEEN
B) IS NULL
C) LIKE
D) IN
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
34
If a designer wishes to create an inner join, but the two tables do not have a commonly named attribute, he can use a(n) _____ clause.

A) OF
B) USING
C) HAS
D) JOIN ON
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
35
The syntax for a left outer join is _____.

A) SELECT     column-list
FROM        table1 OUTER JOIN table2 LEFT
WHERE     join-condition
B) SELECT     column-list
FROM table1 LEFT [OUTER] JOIN table2
ON join-condition
C) SELECT     column-list
WHERE     LEFT table1 = table
D) SELECT    column-list
FROM       table1 LEFT table2 [JOIN]
WHERE     join-condition
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
36
The SQL command that allows a user to permanently save data changes is _____.

A) INSERT
B) SELECT
C) COMMIT
D) UPDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
37
The SQL aggregate function that gives the number of rows containing non-null values for a given column is _____.

A) COUNT
B) MIN
C) MAX
D) SUM
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
38
According to the rules of precedence, which of the following computations should be completed first?

A) Additions and subtractions
B) Multiplications and divisions
C) Operations within parentheses
D) Power operations
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
39
The _____ command restricts the selection of grouped rows based on a condition.

A) DISPLAY
B) HAVING
C) FROM
D) CONVERT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
40
A(n) _____ is an alternate name given to a column or table in any SQL statement.

A) alias
B) data type
C) stored function
D) trigger
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
41
A(n) _____ order sequence is a multilevel ordered sequence that can be created easily by listing several attributes, separated by commas, after the ORDER BY clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
42
The Oracle _____ function compares an attribute or expression with a series of values and returns an associated value or a default value if no match is found.

A) NVL
B) TO_CHAR
C) DECODE
D) CONVERT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
43
When using the Oracle TO_DATE function, the code _____ represents a three-letter month name.

A) MON
B) MM3
C) MONTH
D) MM
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
44
A(n) _____ character is a symbol that can be used as a general substitute for other characters or commands.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
45
An alias is especially useful when a table must be joined to itself in a(n) _____ query.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
46
In Oracle, the _____ function converts a date to a character string.

A) CONVERT()
B) TO_DATE
C) TO_CHAR()
D) TO_STRING()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
47
_____ is a relational set operator.

A) EXCEPT
B) PLUS
C) ALL
D) EXISTS
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
48
_____ is a string function that returns the number of characters in a string value.

A) LENGTH
B) SUBSTRING
C) CONCAT
D) UCASE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
49
A(n) _____ is a query that is embedded (or nested) inside another query.

A) alias
B) operator
C) subquery
D) view
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
50
The _____ function returns the current system date in MS Access.

A) TO_DATE()
B) SYSDATE()
C) DATE()
D) TODAY()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
51
Which is a feature of a correlated subquery?

A) The inner subquery executes first.
B) The outer subquery initiates the process of execution in a subquery.
C) The inner subquery initiates the process of execution in a subquery.
D) The outer subquery executes independent of the inner subquery.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
52
In the SQL environment, the word _____ covers both questions and actions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
53
The _____ specification is used to avoid having duplicated values in a column.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
54
A specialty field in mathematics, known as _____ algebra, is dedicated to the use of logical operators.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
55
In SQL, all _____ expressions evaluate to true or false.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
56
The _____ command, coupled with appropriate search conditions, is an incredibly powerful tool that enables a user to transform data into information.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
57
The _____ condition is generally composed of an equality comparison between the foreign key and the primary key of related tables.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
58
The special operator used to check whether a subquery returns any rows is _____.

A) BETWEEN
B) EXISTS
C) LIKE
D) IN
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
59
In subquery terminology, the first query in the SQL statement is known as the _____ query.

A) outer
B) left
C) inner
D) base
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
60
The basic SQL vocabulary has fewer than _____words.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
61
What is a subquery? What is always executed first?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
62
The _____statement in SQL combines rows from two queries and returns only the rows that appear in the first set but not in the second.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
63
_____ functions allow you to take a value of a given data type and convert it to the equivalent value in another data type.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
64
The _____ operator could be used in place of INTERSECT if the DBMS does not support it.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
65
"_____" means that the names of the relation attributes must be the same and their data types must be alike.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
66
The syntax of theEXCEPT statement in Oracle is _____.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
67
What are the wildcard characters that are used with the LIKE command? Provide one or more examples of each.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
68
A(n) _____, also known as a nested query or an inner query, is a query that is embedded (or nested) inside another query.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
69
Describe the important features and applications of SQL functions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
70
The _____ clause of the GROUP BY statement operates very much like the WHERE clause in the SELECT statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
71
Rows can be grouped into smaller collections quickly and easily using the _____ clause within the SELECT statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
72
The _____ operator could be used in place of EXCEPT (MINUS) if the DBMS does not support it.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
73
DATE() and SYSDATE are special functions that return today's date in MS Access and _____, respectively.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
74
Explain the SQL function categories.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
75
What are the four different types of results that can be returned from a subquery?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.