SQL statements can be embedded in triggers, stored procedures, and program code. 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 : ?
Which is NOT one of the most common types of SQL CHECK constraints? Lists of values Comparing one column value to another within the same table System date Range checks TRUE ANSWER : ? YOUR ANSWER : ?
What is an advantage of placing computations in SQL views? To accomplish both of the above. None of these To ensure that the results are consistent. To save users from having to write an expression. TRUE ANSWER : ? YOUR ANSWER : ?
The SQL statement to create a view is: MAKE VIEW CREATE VIEW SELECT VIEW INSERT VIEW 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. to simplify a result only. None of these TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a program that performs some common action on database data and that is stored in the database. None of these stored procedure pseudofile trigger TRUE ANSWER : ? YOUR ANSWER : ?
Views constructed from SQL SELECT statements that conform to the SQL-92 standard may not contain: WHERE GROUP BY FROM ORDER BY TRUE ANSWER : ? YOUR ANSWER : ?
A view that contains a computed column can be easily updated. True False TRUE ANSWER : ? YOUR ANSWER : ?
The SQL ALTER statement can be used to: change the table structure. delete rows from the table. add rows to the table. change the table data. TRUE ANSWER : ? YOUR ANSWER : ?