Deck 12: Introduce the topic of importing Microsoft Excel 2016 data into a database table

ملء الشاشة (f)
exit full mode
سؤال
One of the limitations of Microsoft Access 2016 is that is does not include application development tools.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
A stored program that is attached to a table or view is called ________.

A) a CHECK constraint
B) a view
C) embedded SQL
D) a trigger
E) a stored procedure
سؤال
The SQL Server DBMS supports the SQL BEFORE trigger.
سؤال
Unlike application code,stored procedures are never distributed to the client computers.
سؤال
Which of the following is an SQL trigger that Oracle supports?

A) BETWEEN INSERT
B) WHILE INSERT
C) DURING INSERT
D) AFTER INSERT
E) ALONG WITH INSERT
سؤال
A stored program that is attached to a table or view is called a stored procedure.
سؤال
Which of the following is an SQL trigger that Microsoft SQL Server supports?

A) BEFORE
B) INSTEAD OF
C) AFTER
D) B and C only
E) A, B, and C
سؤال
Which of the following is not an SQL trigger?

A) BEFORE UPDATE
B) INSTEAD OF UPDATE
C) BEFORE INSERT
D) INSTEAD OF CONSTRAINT
E) AFTER DELETE
سؤال
SQL triggers can be used when the DBMS receives an INSERT request.
سؤال
The Oracle DBMS supports the SQL BEFORE trigger.
سؤال
SQL triggers use the SQL keywords BEFORE,INSTEAD OF,and AFTER.
سؤال
SQL triggers are used for all uses except ________.

A) validity checking
B) providing default values
C) enforcing synchronization
D) enforcing data constraints
E) updating views
سؤال
SQL triggers are used for providing default values,validity checking,updating views,and performing referential integrity actions.
سؤال
SQL triggers can be used when the DBMS receives an UPDATE request.
سؤال
Importing Microsoft Excel data into a DMBS varies considerably from DBMS to DBMS.
سؤال
SQL triggers can be used with SQL operations INSERT,UPDATE,and DELETE.
سؤال
Because SQL stored procedures allow and encourage code sharing among developers,stored procedures give database application developers the advantages of less work,standardized processing,and specialization among developers.
سؤال
SQL triggers can be used when the DBMS receives a(n)________ request.

A) ADD
B) UPDATE
C) CLEAN
D) FREE
E) NEW
سؤال
Stored procedures have the advantage of greater security,decreased network traffic,SQL optimized by the DBMS compiler,and code sharing.
سؤال
A stored program that is stored within the database and compiled when used is called a trigger.
سؤال
SQL views can be used to hide complicated SQL syntax.
سؤال
The LEFT and RIGHT keywords can be used to include unmatched rows into the results.
سؤال
SQL views can be used to hide rows.
سؤال
SQL views can be used to display the results of computed columns.
سؤال
What are SQL triggers and how are they used?
سؤال
Describe a situation where a SQL MERGE statement is appropriately used in a table.
سؤال
The SQL statement DROP VIEW ViewName is used to delete a view from a database.
سؤال
SQL views can be used to hide columns.
سؤال
SQL views can be used to layer built-in SQL functions.
سؤال
Stored procedures have the advantage of all choices except ________.

A) greater security
B) data integrity through distributed copies
C) SQL optimized by the DBMS compiler
D) code sharing
E) decreased network traffic
سؤال
An SQL virtual table is called a view.
سؤال
SQL views contain their own data.
سؤال
A stored program that is attached to the database is called ________.

A) a CHECK constraint
B) a view
C) embedded SQL
D) a trigger
E) a stored procedure
سؤال
SQL views are used for all except ________.

A) to backup preexisting tables
B) to display the results of computations
C) to hide complicated SQL syntax
D) to layer built-in functions
E) to hide columns or rows
سؤال
An SQL virtual table is called a(n)________.

A) CHECK constraint
B) view
C) embedded SQL statement
D) trigger
E) stored procedure
سؤال
Microsoft Access ________.

A) supports standard SQL view statements
B) only supports SQL view statements as QBE constructions
C) can store a view equivalent Access query
D) can store a view equivalent Access query but does not provide a means to use it
E) cannot store any database object that is equivalent to an SQL view
سؤال
Because SQL stored procedures allow and encourage code sharing among developers,stored procedures give database application developers the advantages of all except ________.

A) increased network throughput
B) standardized processing
C) specialization among developers
D) less work
E) greater security
سؤال
What is not a reason to use the SQL ALTER TABLE statement?

A) Add triggers
B) Add columns
C) Drop columns
D) Add constraints
E) Modify columns
سؤال
A relational database table meets the definition of a set.
سؤال
What are SQL stored procedures and how are they used?
سؤال
The SQL keyword ORDER BY can be used with SELECT statements that are retrieving data from view instances to sort the results of the SELECT.
سؤال
The SQL statement ALTER EXISTING VIEW ViewName AS is used to modify a view.
سؤال
Microsoft Access supports standard SQL view statements.
سؤال
SQL views are constructed from SELECT statements.
سؤال
Microsoft Access queries ________.

A) can use previously stored view equivalent Access queries
B) cannot use previously stored view equivalent Access queries for any purpose
C) cannot use previously stored view equivalent Access queries to hide rows
D) cannot use previously stored view equivalent Access queries to hide columns
E) cannot use previously stored view equivalent Access queries to hide complicated SQL syntax
سؤال
Since an SQL view is essentially a stored query,Microsoft Access queries can be used to implement SQL view equivalents.
سؤال
Similar to correlated subqueries,queries on recursive relationships use aliases (copies)of the same table.
سؤال
The SQL command CREATE VIEW is used to create view structures.
سؤال
Correlated subqueries do exactly the same type of work as join queries.
سؤال
Outer joins are completely supported in Microsoft Access.
سؤال
An SQL virtual table is called a(n)________.
سؤال
SQL views can be used to display the results of ________.
سؤال
The SQL UNION operator is supported by all DBMS products.
سؤال
SQL views can be used to hide table ________.
سؤال
SQL views can be used to layer ________.
سؤال
Unlike typical subqueries,correlated subqueries creates "copies" of a table,and evaluate each row of the outer copy with every row of the inner copy.
سؤال
What is the first stage in the logical process flow of a User-Defined function?

A) Receive input from calling SQL statement
B) Preprocess parameter values
C) Process parameter values to create result(s)
D) Arrange results into a formal ResultSet
E) Output to calling SQL statement
سؤال
When an SQL SELECT statement is used to retrieve data from a view instance,the maximum number of columns that can be specified in the SELECT is the same as the number of columns in the table underlying the view.
سؤال
SQL statements used to construct views cannot contain the WHERE clause.
سؤال
The SQL command SELECT is used to retrieve data from view instances.
سؤال
Since an SQL view is essentially a stored query,Microsoft Access ________ can be used to implement SQL view equivalents.
سؤال
The SQL statement ________ is used to modify a view.
سؤال
Based on the tables below,which of the following SQL commands would create an SQL view named CustomerSalesRep that could be used to display CustNo,CustName,RepName?
GENERAL SALES DATABASE:
SALESREP
<strong>Based on the tables below,which of the following SQL commands would create an SQL view named CustomerSalesRep that could be used to display CustNo,CustName,RepName? GENERAL SALES DATABASE: SALESREP   CUSTOMER  </strong> A) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER; B) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; C) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo; D) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; E) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo; <div style=padding-top: 35px>
CUSTOMER
<strong>Based on the tables below,which of the following SQL commands would create an SQL view named CustomerSalesRep that could be used to display CustNo,CustName,RepName? GENERAL SALES DATABASE: SALESREP   CUSTOMER  </strong> A) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER; B) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; C) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo; D) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; E) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo; <div style=padding-top: 35px>

A) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER;
B) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER
WHERE CustNo=*;
C) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER
WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo;
D) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName
FROM SALESREP, CUSTOMER
WHERE CustNo=*;
E) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName
FROM SALESREP, CUSTOMER
WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo;
سؤال
When an SQL SELECT statement is used to retrieve data from a view instance,the maximum number of columns that can be specified in the SELECT is the same as the number of columns ________.

A) in the table underlying the view
B) in the VIEW specification
C) in the ORDER BY clause
D) in the HAVING clause
E) that have aliases
سؤال
SQL view instances are retrieved using the ________.

A) SQL CREATE statement
B) SQL DELETE statement
C) SQL INSERT statement
D) SQL SELECT statement
E) SQL UPDATE statement
سؤال
Use the database below to answer the following question.
GENERAL SALES DATABASE:
SALESREP
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Using the CUSTOMERBalance column as the column providing the data,create a view to display the results of a computed column.Specifically,assume that all customers are required to maintain a minimum balance of 100,and use the view to display customer name and a number named BalanceOverMinimum that calculates (Balance - 100)for all customers in the GENERAL SALES DATABASE.<div style=padding-top: 35px>
CUSTOMER
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Using the CUSTOMERBalance column as the column providing the data,create a view to display the results of a computed column.Specifically,assume that all customers are required to maintain a minimum balance of 100,and use the view to display customer name and a number named BalanceOverMinimum that calculates (Balance - 100)for all customers in the GENERAL SALES DATABASE.<div style=padding-top: 35px>
Using the CUSTOMERBalance column as the column providing the data,create a view to display the results of a computed column.Specifically,assume that all customers are required to maintain a minimum balance of 100,and use the view to display customer name and a number named BalanceOverMinimum that calculates (Balance - 100)for all customers in the GENERAL SALES DATABASE.
سؤال
Although it cannot be used in creating an SQL VIEW,the SQL SELECT statements retrieving view instances can include ________.

A) SQL keyword ORDER BY
B) SQL keyword LIKE
C) SQL keyword BETWEEN
D) SQL keyword NULL
E) SQL keyword NOT NULL
سؤال
SQL views are constructed from SQL ________ statements.
سؤال
SQL views are constructed from ________.

A) CREATE statements
B) INSERT statements
C) UPDATE statements
D) SELECT statements
E) VIEW statements
سؤال
Microsoft Access queries cannot use previously stored view equivalent Access queries.
سؤال
The SQL statement used to modify a view is ________.

A) ALTER EXISTING VIEW ViewName AS
B) ALTER VIEW ViewName AS
C) DROP EXISTING VIEW ViewName
D) DROP VIEW ViewName
E) MODIFY VIEW ViewName AS
سؤال
Microsoft Access ________ can use previously stored view equivalent Access queries the same way an SQL SELECT statement uses SQL views.
سؤال
The SQL statement used to delete a view from a database is ________.

A) ALTER EXISTING VIEW ViewName AS
B) ALTER VIEW ViewName AS
C) DELETE VIEW ViewName
D) DROP EXISTING VIEW ViewName
E) DROP VIEW ViewName
سؤال
The SQL statement ________ is used to delete a view from a database.
سؤال
SQL statements used to construct views cannot contain ________.

A) the SELECT clause
B) the FROM clause
C) the WHERE clause
D) the ORDER BY clause
E) the LIKE keyword
سؤال
The SQL keyword ________ can be used with SELECT statements retrieving view instances to sort the results of the SELECT.
سؤال
Use the database below to answer the following question.
GENERAL SALES DATABASE:
SALESREP
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Write the SQL statement to create a view named CustomerSalesRepView that displays the customer name as CustomerName and the associated sales rep name SaleRepresentativeName from the GENERAL SALES DATABASE.<div style=padding-top: 35px>
CUSTOMER
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Write the SQL statement to create a view named CustomerSalesRepView that displays the customer name as CustomerName and the associated sales rep name SaleRepresentativeName from the GENERAL SALES DATABASE.<div style=padding-top: 35px>
Write the SQL statement to create a view named CustomerSalesRepView that displays the customer name as CustomerName and the associated sales rep name SaleRepresentativeName from the GENERAL SALES DATABASE.
سؤال
The SQL command ________ is used to create a virtual table.
سؤال
SQL statements used to construct views cannot contain the ________ clause.
سؤال
Use the database below to answer the following question.
GENERAL SALES DATABASE:
SALESREP
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   What is an SQL view,and what is it used for? Include an example based on the CUSTOMER table of the General Sales Database.<div style=padding-top: 35px>
CUSTOMER
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   What is an SQL view,and what is it used for? Include an example based on the CUSTOMER table of the General Sales Database.<div style=padding-top: 35px>
What is an SQL view,and what is it used for? Include an example based on the CUSTOMER table of the General Sales Database.
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/84
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 12: Introduce the topic of importing Microsoft Excel 2016 data into a database table
1
One of the limitations of Microsoft Access 2016 is that is does not include application development tools.
False
2
A stored program that is attached to a table or view is called ________.

A) a CHECK constraint
B) a view
C) embedded SQL
D) a trigger
E) a stored procedure
D
3
The SQL Server DBMS supports the SQL BEFORE trigger.
False
4
Unlike application code,stored procedures are never distributed to the client computers.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
5
Which of the following is an SQL trigger that Oracle supports?

A) BETWEEN INSERT
B) WHILE INSERT
C) DURING INSERT
D) AFTER INSERT
E) ALONG WITH INSERT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
6
A stored program that is attached to a table or view is called a stored procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
7
Which of the following is an SQL trigger that Microsoft SQL Server supports?

A) BEFORE
B) INSTEAD OF
C) AFTER
D) B and C only
E) A, B, and C
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
8
Which of the following is not an SQL trigger?

A) BEFORE UPDATE
B) INSTEAD OF UPDATE
C) BEFORE INSERT
D) INSTEAD OF CONSTRAINT
E) AFTER DELETE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
9
SQL triggers can be used when the DBMS receives an INSERT request.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
10
The Oracle DBMS supports the SQL BEFORE trigger.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
11
SQL triggers use the SQL keywords BEFORE,INSTEAD OF,and AFTER.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
12
SQL triggers are used for all uses except ________.

A) validity checking
B) providing default values
C) enforcing synchronization
D) enforcing data constraints
E) updating views
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
13
SQL triggers are used for providing default values,validity checking,updating views,and performing referential integrity actions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
14
SQL triggers can be used when the DBMS receives an UPDATE request.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
15
Importing Microsoft Excel data into a DMBS varies considerably from DBMS to DBMS.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
16
SQL triggers can be used with SQL operations INSERT,UPDATE,and DELETE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
17
Because SQL stored procedures allow and encourage code sharing among developers,stored procedures give database application developers the advantages of less work,standardized processing,and specialization among developers.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
18
SQL triggers can be used when the DBMS receives a(n)________ request.

A) ADD
B) UPDATE
C) CLEAN
D) FREE
E) NEW
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
19
Stored procedures have the advantage of greater security,decreased network traffic,SQL optimized by the DBMS compiler,and code sharing.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
20
A stored program that is stored within the database and compiled when used is called a trigger.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
21
SQL views can be used to hide complicated SQL syntax.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
22
The LEFT and RIGHT keywords can be used to include unmatched rows into the results.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
23
SQL views can be used to hide rows.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
24
SQL views can be used to display the results of computed columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
25
What are SQL triggers and how are they used?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
26
Describe a situation where a SQL MERGE statement is appropriately used in a table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
27
The SQL statement DROP VIEW ViewName is used to delete a view from a database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
28
SQL views can be used to hide columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
29
SQL views can be used to layer built-in SQL functions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
30
Stored procedures have the advantage of all choices except ________.

A) greater security
B) data integrity through distributed copies
C) SQL optimized by the DBMS compiler
D) code sharing
E) decreased network traffic
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
31
An SQL virtual table is called a view.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
32
SQL views contain their own data.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
33
A stored program that is attached to the database is called ________.

A) a CHECK constraint
B) a view
C) embedded SQL
D) a trigger
E) a stored procedure
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
34
SQL views are used for all except ________.

A) to backup preexisting tables
B) to display the results of computations
C) to hide complicated SQL syntax
D) to layer built-in functions
E) to hide columns or rows
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
35
An SQL virtual table is called a(n)________.

A) CHECK constraint
B) view
C) embedded SQL statement
D) trigger
E) stored procedure
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
36
Microsoft Access ________.

A) supports standard SQL view statements
B) only supports SQL view statements as QBE constructions
C) can store a view equivalent Access query
D) can store a view equivalent Access query but does not provide a means to use it
E) cannot store any database object that is equivalent to an SQL view
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
37
Because SQL stored procedures allow and encourage code sharing among developers,stored procedures give database application developers the advantages of all except ________.

A) increased network throughput
B) standardized processing
C) specialization among developers
D) less work
E) greater security
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
38
What is not a reason to use the SQL ALTER TABLE statement?

A) Add triggers
B) Add columns
C) Drop columns
D) Add constraints
E) Modify columns
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
39
A relational database table meets the definition of a set.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
40
What are SQL stored procedures and how are they used?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
41
The SQL keyword ORDER BY can be used with SELECT statements that are retrieving data from view instances to sort the results of the SELECT.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
42
The SQL statement ALTER EXISTING VIEW ViewName AS is used to modify a view.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
43
Microsoft Access supports standard SQL view statements.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
44
SQL views are constructed from SELECT statements.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
45
Microsoft Access queries ________.

A) can use previously stored view equivalent Access queries
B) cannot use previously stored view equivalent Access queries for any purpose
C) cannot use previously stored view equivalent Access queries to hide rows
D) cannot use previously stored view equivalent Access queries to hide columns
E) cannot use previously stored view equivalent Access queries to hide complicated SQL syntax
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
46
Since an SQL view is essentially a stored query,Microsoft Access queries can be used to implement SQL view equivalents.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
47
Similar to correlated subqueries,queries on recursive relationships use aliases (copies)of the same table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
48
The SQL command CREATE VIEW is used to create view structures.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
49
Correlated subqueries do exactly the same type of work as join queries.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
50
Outer joins are completely supported in Microsoft Access.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
51
An SQL virtual table is called a(n)________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
52
SQL views can be used to display the results of ________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
53
The SQL UNION operator is supported by all DBMS products.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
54
SQL views can be used to hide table ________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
55
SQL views can be used to layer ________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
56
Unlike typical subqueries,correlated subqueries creates "copies" of a table,and evaluate each row of the outer copy with every row of the inner copy.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
57
What is the first stage in the logical process flow of a User-Defined function?

A) Receive input from calling SQL statement
B) Preprocess parameter values
C) Process parameter values to create result(s)
D) Arrange results into a formal ResultSet
E) Output to calling SQL statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
58
When an SQL SELECT statement is used to retrieve data from a view instance,the maximum number of columns that can be specified in the SELECT is the same as the number of columns in the table underlying the view.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
59
SQL statements used to construct views cannot contain the WHERE clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
60
The SQL command SELECT is used to retrieve data from view instances.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
61
Since an SQL view is essentially a stored query,Microsoft Access ________ can be used to implement SQL view equivalents.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
62
The SQL statement ________ is used to modify a view.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
63
Based on the tables below,which of the following SQL commands would create an SQL view named CustomerSalesRep that could be used to display CustNo,CustName,RepName?
GENERAL SALES DATABASE:
SALESREP
<strong>Based on the tables below,which of the following SQL commands would create an SQL view named CustomerSalesRep that could be used to display CustNo,CustName,RepName? GENERAL SALES DATABASE: SALESREP   CUSTOMER  </strong> A) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER; B) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; C) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo; D) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; E) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo;
CUSTOMER
<strong>Based on the tables below,which of the following SQL commands would create an SQL view named CustomerSalesRep that could be used to display CustNo,CustName,RepName? GENERAL SALES DATABASE: SALESREP   CUSTOMER  </strong> A) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER; B) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; C) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo; D) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE CustNo=*; E) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo;

A) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER;
B) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER
WHERE CustNo=*;
C) SELECT CustNo, CustName, RepName FROM SALESREP, CUSTOMER
WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo;
D) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName
FROM SALESREP, CUSTOMER
WHERE CustNo=*;
E) CREATE VIEW CustomerSalesRep AS SELECT CustNo, CustName, RepName
FROM SALESREP, CUSTOMER
WHERE SALEREP, SalesRepNo = CUSTOMER, SalesRepNo;
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
64
When an SQL SELECT statement is used to retrieve data from a view instance,the maximum number of columns that can be specified in the SELECT is the same as the number of columns ________.

A) in the table underlying the view
B) in the VIEW specification
C) in the ORDER BY clause
D) in the HAVING clause
E) that have aliases
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
65
SQL view instances are retrieved using the ________.

A) SQL CREATE statement
B) SQL DELETE statement
C) SQL INSERT statement
D) SQL SELECT statement
E) SQL UPDATE statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
66
Use the database below to answer the following question.
GENERAL SALES DATABASE:
SALESREP
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Using the CUSTOMERBalance column as the column providing the data,create a view to display the results of a computed column.Specifically,assume that all customers are required to maintain a minimum balance of 100,and use the view to display customer name and a number named BalanceOverMinimum that calculates (Balance - 100)for all customers in the GENERAL SALES DATABASE.
CUSTOMER
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Using the CUSTOMERBalance column as the column providing the data,create a view to display the results of a computed column.Specifically,assume that all customers are required to maintain a minimum balance of 100,and use the view to display customer name and a number named BalanceOverMinimum that calculates (Balance - 100)for all customers in the GENERAL SALES DATABASE.
Using the CUSTOMERBalance column as the column providing the data,create a view to display the results of a computed column.Specifically,assume that all customers are required to maintain a minimum balance of 100,and use the view to display customer name and a number named BalanceOverMinimum that calculates (Balance - 100)for all customers in the GENERAL SALES DATABASE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
67
Although it cannot be used in creating an SQL VIEW,the SQL SELECT statements retrieving view instances can include ________.

A) SQL keyword ORDER BY
B) SQL keyword LIKE
C) SQL keyword BETWEEN
D) SQL keyword NULL
E) SQL keyword NOT NULL
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
68
SQL views are constructed from SQL ________ statements.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
69
SQL views are constructed from ________.

A) CREATE statements
B) INSERT statements
C) UPDATE statements
D) SELECT statements
E) VIEW statements
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
70
Microsoft Access queries cannot use previously stored view equivalent Access queries.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
71
The SQL statement used to modify a view is ________.

A) ALTER EXISTING VIEW ViewName AS
B) ALTER VIEW ViewName AS
C) DROP EXISTING VIEW ViewName
D) DROP VIEW ViewName
E) MODIFY VIEW ViewName AS
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
72
Microsoft Access ________ can use previously stored view equivalent Access queries the same way an SQL SELECT statement uses SQL views.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
73
The SQL statement used to delete a view from a database is ________.

A) ALTER EXISTING VIEW ViewName AS
B) ALTER VIEW ViewName AS
C) DELETE VIEW ViewName
D) DROP EXISTING VIEW ViewName
E) DROP VIEW ViewName
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
74
The SQL statement ________ is used to delete a view from a database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
75
SQL statements used to construct views cannot contain ________.

A) the SELECT clause
B) the FROM clause
C) the WHERE clause
D) the ORDER BY clause
E) the LIKE keyword
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
76
The SQL keyword ________ can be used with SELECT statements retrieving view instances to sort the results of the SELECT.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
77
Use the database below to answer the following question.
GENERAL SALES DATABASE:
SALESREP
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Write the SQL statement to create a view named CustomerSalesRepView that displays the customer name as CustomerName and the associated sales rep name SaleRepresentativeName from the GENERAL SALES DATABASE.
CUSTOMER
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   Write the SQL statement to create a view named CustomerSalesRepView that displays the customer name as CustomerName and the associated sales rep name SaleRepresentativeName from the GENERAL SALES DATABASE.
Write the SQL statement to create a view named CustomerSalesRepView that displays the customer name as CustomerName and the associated sales rep name SaleRepresentativeName from the GENERAL SALES DATABASE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
78
The SQL command ________ is used to create a virtual table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
79
SQL statements used to construct views cannot contain the ________ clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
80
Use the database below to answer the following question.
GENERAL SALES DATABASE:
SALESREP
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   What is an SQL view,and what is it used for? Include an example based on the CUSTOMER table of the General Sales Database.
CUSTOMER
Use the database below to answer the following question. GENERAL SALES DATABASE: SALESREP   CUSTOMER   What is an SQL view,and what is it used for? Include an example based on the CUSTOMER table of the General Sales Database.
What is an SQL view,and what is it used for? Include an example based on the CUSTOMER table of the General Sales Database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 84 في هذه المجموعة.