The SQL command to create a table is: CREATE TABLE ALTER TABLE DEFINE TABLE MAKE TABLE TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a stored program that is attached to a table or a view. trigger None of these embedded SELECT statement pseudofile TRUE ANSWER : ? YOUR ANSWER : ?
A reason for using an SQL view to hide columns is: to prevent the display of sensitive data only. to accomplish both of the above. None of these to simplify a result only. TRUE ANSWER : ? YOUR ANSWER : ?
If any required (NOT NULL) columns are missing from the view, the view cannot be used for inserting new data. False True 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. works whether or not referential integrity constraints would be violated. deletes the table structure only. deletes the table structure along with the table data. TRUE ANSWER : ? YOUR ANSWER : ?
For what purposes are views used? To hide rows only To hide columns only To hide complicated SQL statements only All of these TRUE ANSWER : ? YOUR ANSWER : ?
The SQL CHECK constraint is fully defined by the SQL-92 standard, and is consistently implemented by all DBMS vendors. False True TRUE ANSWER : ? YOUR ANSWER : ?
There are three SQL data modification operations: insert, modify and delete. True False TRUE ANSWER : ? YOUR ANSWER : ?
The SQL statement to create a view is: CREATE VIEW SELECT VIEW INSERT VIEW MAKE VIEW TRUE ANSWER : ? YOUR ANSWER : ?