When using the SQL INSERT statement: rows can be inserted into a table only one at a time only. rows cannot be copied in mass from one table to another only. rows can either be inserted into a table one at a time or in groups. rows can be modified according to criteria only. TRUE ANSWER : ? YOUR ANSWER : ?
Views can be used to show the results of computed columns. True False TRUE ANSWER : ? YOUR ANSWER : ?
The SQL statement to create a view is: MAKE VIEW SELECT VIEW CREATE VIEW INSERT VIEW TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a stored program that is attached to a table or a view. trigger embedded SELECT statement pseudofile None of these TRUE ANSWER : ? YOUR ANSWER : ?
The DROP TABLE statement: deletes the table structure only. deletes the table structure along with the table data. works whether or not referential integrity constraints would be violated. is not an SQL statement. TRUE ANSWER : ? YOUR ANSWER : ?
What is not an advantage of stored procedures? SQL can be optimized Code sharing Greater security Increased network traffic TRUE ANSWER : ? YOUR ANSWER : ?
For what purposes are views used? All of these To hide rows only To hide complicated SQL statements only To hide columns only TRUE ANSWER : ? YOUR ANSWER : ?
The SQL CHECK constraint is fully defined by the SQL-92 standard, and is consistently implemented by all DBMS vendors. True False TRUE ANSWER : ? YOUR ANSWER : ?
SQL views can be used to hide: None of these complicated SQL syntax only. columns and rows only. both of the above can be hidden by an SQL view. TRUE ANSWER : ? YOUR ANSWER : ?