The SQL ALTER statement can be used to: change the table data. delete rows from the table. add rows to the table. change the table structure. TRUE ANSWER : ? YOUR ANSWER : ?
If any required (NOT NULL) columns are missing from the view, the view cannot be used for inserting new data. False True TRUE ANSWER : ? YOUR ANSWER : ?
When using the SQL INSERT statement: rows can be inserted into a table only one at a time only. rows cannot be copied in mass from one table to another only. rows can either be inserted into a table one at a time or in groups. rows can be modified according to criteria only. TRUE ANSWER : ? YOUR ANSWER : ?
What is not an advantage of stored procedures? Code sharing SQL can be optimized Greater security Increased network traffic 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 : ?
Which is NOT one of the most common types of SQL CHECK constraints? Range checks System date Lists of values Comparing one column value to another within the same table TRUE ANSWER : ? YOUR ANSWER : ?
SQL has a JOIN ON syntax that can be used to create inner joins and outer joins. False True TRUE ANSWER : ? YOUR ANSWER : ?
SQL views can be used to hide: complicated SQL syntax only. columns and rows only. None of these both of the above can be hidden by an SQL view. TRUE ANSWER : ? YOUR ANSWER : ?