To update an SQL view, the DBMS must be able to associate the column(s) to be updated with: a particular column in a particular underlying table. a particular row in a particular underlying table. a particular column in a particular row. None of these TRUE ANSWER : ? YOUR ANSWER : ?
The SQL MAKE TABLE command is used to construct tables, define columns, define column constraints and create relationships. False True TRUE ANSWER : ? YOUR ANSWER : ?
SQL statements can be embedded in triggers, stored procedures, and program code. False True TRUE ANSWER : ? YOUR ANSWER : ?
A trigger is a stored program that is attached to a database. False True TRUE ANSWER : ? YOUR ANSWER : ?
The SQL ALTER statement can be used to: delete rows from the table. change the table structure. add rows to the table. change the table data. TRUE ANSWER : ? YOUR ANSWER : ?
When a foreign key column is created without a corresponding foreign key constraint, we have created a "casual relationship" between the two tables. True False TRUE ANSWER : ? YOUR ANSWER : ?
A benefit of using a stored procedure is that it can be distributed to client computers. True False TRUE ANSWER : ? YOUR ANSWER : ?
SQL has a JOIN ON syntax that can be used to create inner joins and outer joins. True False TRUE ANSWER : ? YOUR ANSWER : ?
A view that contains a computed column can be easily updated. False True TRUE ANSWER : ? YOUR ANSWER : ?
SQL views can be used to hide: complicated SQL syntax only. both of the above can be hidden by an SQL view. columns and rows only. None of these TRUE ANSWER : ? YOUR ANSWER : ?