SQL views can be used to hide: both of the above can be hidden by an SQL view. columns and rows only. complicated SQL syntax only. None of these TRUE ANSWER : ? YOUR ANSWER : ?
The SQL command to create a table is: MAKE TABLE DEFINE TABLE CREATE TABLE ALTER TABLE TRUE ANSWER : ? YOUR ANSWER : ?
Common types of SQL CHECK constraints include range checks and limiting columns values. True False TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a stored program that is attached to a table or a view. pseudofile embedded SELECT statement None of these trigger TRUE ANSWER : ? YOUR ANSWER : ?
A view that contains a computed column can be easily updated. False True TRUE ANSWER : ? YOUR ANSWER : ?
A trigger is a stored program that is attached to a database. False True TRUE ANSWER : ? YOUR ANSWER : ?
When using the SQL INSERT statement: 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. rows can be inserted into a table only one at a time only. TRUE ANSWER : ? YOUR ANSWER : ?
A stored procedure is a program that performs some common action on database data and is stored in the database. False True TRUE ANSWER : ? YOUR ANSWER : ?
The DROP TABLE statement: is not an SQL statement. deletes the table structure only. works whether or not referential integrity constraints would be violated. deletes the table structure along with the table data. TRUE ANSWER : ? YOUR ANSWER : ?
The SQL ALTER statement can be used to: delete rows from the table. add rows to the table. change the table structure. change the table data. TRUE ANSWER : ? YOUR ANSWER : ?