Which is NOT one of the most common types of SQL CHECK constraints? System date Comparing one column value to another within the same table Lists of values Range checks TRUE ANSWER : ? YOUR ANSWER : ?
SQL statements can be embedded in triggers, stored procedures, and program code. True False TRUE ANSWER : ? YOUR ANSWER : ?
What is not an advantage of stored procedures? Increased network traffic SQL can be optimized Greater security Code sharing TRUE ANSWER : ? YOUR ANSWER : ?
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 : ?
What is an advantage of placing computations in SQL views? To accomplish both of the above. To save users from having to write an expression. None of these To ensure that the results are consistent. TRUE ANSWER : ? YOUR ANSWER : ?
There are three SQL data modification operations: insert, modify and delete. False True TRUE ANSWER : ? YOUR ANSWER : ?
The SQL statement to create a view is: SELECT VIEW INSERT VIEW CREATE VIEW MAKE VIEW TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a program that performs some common action on database data and that is stored in the database. pseudofile stored procedure trigger None of these TRUE ANSWER : ? YOUR ANSWER : ?
A SQL view is a virtual table that is constructed from other tables or views. True False TRUE ANSWER : ? YOUR ANSWER : ?