Which is NOT one of the most common types of SQL CHECK constraints? Lists of values System date Comparing one column value to another within the same table Range checks TRUE ANSWER : ? YOUR ANSWER : ?
The SQL CHECK constraint is fully defined by the SQL-92 standard, and is consistently implemented by all DBMS vendors. True False TRUE ANSWER : ? YOUR ANSWER : ?
What is an SQL virtual table that is constructed from other tables? Just another table Query results A relation A view TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a program that performs some common action on database data and that is stored in the database. stored procedure trigger None of these pseudofile TRUE ANSWER : ? YOUR ANSWER : ?
A stored procedure is a program that performs some common action on database data and is stored in the database. True False TRUE ANSWER : ? YOUR ANSWER : ?
Views constructed from SQL SELECT statements that conform to the SQL-92 standard may not contain: FROM GROUP BY WHERE ORDER BY TRUE ANSWER : ? YOUR ANSWER : ?
What is not an advantage of stored procedures? Greater security Code sharing SQL can be optimized Increased network traffic TRUE ANSWER : ? YOUR ANSWER : ?
What is an advantage of placing computations in SQL views? To ensure that the results are consistent. To save users from having to write an expression. To accomplish both of the above. None of these TRUE ANSWER : ? YOUR ANSWER : ?
A reason for using an SQL view to hide columns is: to prevent the display of sensitive data only. None of these to accomplish both of the above. to simplify a result only. TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is NOT a type of SQL constraint? FOREIGN KEY UNIQUE PRIMARY KEY ALTERNATE KEY TRUE ANSWER : ? YOUR ANSWER : ?