Exam 13: Views
Exam 1: Overview of Database Concepts108 Questions
Exam 2: Basic Sql Select Statements122 Questions
Exam 3: Table Creation and Management132 Questions
Exam 4: Constraints132 Questions
Exam 5: Data Manipulation and Transaction Control132 Questions
Exam 6: Additional Database Objects132 Questions
Exam 7: User Creation and Management132 Questions
Exam 8: Restricting Rows and Sorting Data132 Questions
Exam 9: Joining Data From Multiple Tables131 Questions
Exam 10: Selected Single Row Functions133 Questions
Exam 11: Group Functions134 Questions
Exam 12: Subqueries and Merge Statements132 Questions
Exam 13: Views133 Questions
Select questions type
____________________ analysis could be used to find the top five values stored in a column.
Free
(Short Answer)
4.8/5
(27)
Correct Answer:
"TOP-N"
TOP-N
A(n) operation can be performed on a complex view that contains an arithmetic operation. _________________________
Free
(True/False)
4.9/5
(35)
Correct Answer:
True
A view can be created to simplify issuing complex SQL queries.
Free
(True/False)
4.9/5
(36)
Correct Answer:
True
An inline view is a temporary table that only lasts for the duration of the SELECT statement used to create it.
(True/False)
4.8/5
(40)
Which SQL statement can be executed based upon the view created from the following command, assuming no constraints exist on the underlying table? CREATE VIEW prices
AS SELECT isbn, title, cost, retail, retail-cost profit
FROM books;
(Multiple Choice)
4.8/5
(33)
DML operations are not allowed on views that include the pseudo column ____________________.
(Short Answer)
5.0/5
(26)
Which of the following statements about complex views is incorrect?
(Multiple Choice)
4.9/5
(34)
Rows can be updated through a simple view as long as the operation does not violate existing constraints and the view was created with the WITH READ ONLY option.
(True/False)
4.8/5
(32)
The column names used in the view must be the same names as the column names in the underlying table(s).
(True/False)
4.9/5
(38)
When a view includes columns from more than one table, updates can only be applied to the table that contains the ____________________ for the view.
(Short Answer)
4.9/5
(32)
A view cannot be given the same name as another database object.
(True/False)
4.8/5
(29)
A(n) ____ table is the table that contains the primary key the view uses to uniquely identify each record being displayed by the view.
(Multiple Choice)
4.7/5
(37)
If a view needs to be modified, it must be re-created using the ____________________ keywords in the CREATE VIEW command.
(Short Answer)
4.8/5
(37)
A(n) ____ stores a query and is used to access data in the underlying tables.
(Multiple Choice)
4.7/5
(34)
Rows can be deleted through a simple view as long as the operation does not violate existing constraints and the view was created with the WITH READ ONLY option.
(True/False)
4.7/5
(42)
Which of the following types of views cannot include an arithmetic expression?
(Multiple Choice)
5.0/5
(30)
Showing 1 - 20 of 133
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)