A stored procedure is a program that performs some common action on database data and is stored in the database. True False TRUE ANSWER : ? YOUR ANSWER : ?
The SQL statement to create a view is: INSERT VIEW CREATE VIEW MAKE VIEW SELECT VIEW TRUE ANSWER : ? YOUR ANSWER : ?
A SQL view is a virtual table that is constructed from other tables or views. False True TRUE ANSWER : ? YOUR ANSWER : ?
When using the SQL INSERT statement: rows can either be inserted into a table one at a time or in groups. rows can be modified according to criteria only. rows cannot be copied in mass from one table to another only. rows can be inserted into a table only one at a time only. TRUE ANSWER : ? YOUR ANSWER : ?
What is an advantage of placing computations in SQL views? None of these To ensure that the results are consistent. To accomplish both of the above. To save users from having to write an expression. TRUE ANSWER : ? YOUR ANSWER : ?
The SQL MAKE TABLE command is used to construct tables, define columns, define column constraints and create relationships. True False TRUE ANSWER : ? YOUR ANSWER : ?
What is not an advantage of stored procedures? SQL can be optimized Increased network traffic Code sharing Greater security TRUE ANSWER : ? YOUR ANSWER : ?
Views can be used to show the results of computed columns. False True TRUE ANSWER : ? YOUR ANSWER : ?