What SQL structure is used to limit column values of a table? The LIMIT constraint None of these The CHECK constraint The VALUE constraint TRUE ANSWER : ? YOUR ANSWER : ?
Which is NOT one of the most common types of SQL CHECK constraints? Comparing one column value to another within the same table Lists of values System date Range checks TRUE ANSWER : ? YOUR ANSWER : ?
For what purposes are views used? To hide rows only All of these To hide complicated SQL statements only To hide columns only 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. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is an SQL trigger supported by Oracle? AFTER All of these BEFORE INSTEAD OF 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 : ?
A view that contains a computed column can be easily updated. True False TRUE ANSWER : ? YOUR ANSWER : ?
The SQL statement to create a view is: CREATE VIEW MAKE VIEW INSERT VIEW SELECT VIEW TRUE ANSWER : ? YOUR ANSWER : ?
What is an advantage of placing computations in SQL views? None of these To save users from having to write an expression. To accomplish both of the above. To ensure that the results are consistent. 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 : ?