Advanced SQL Outer join is the same as equi-join, except one of the duplicate columns is eliminated in the result table. True False True False ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Which of the following is true concerning a procedure? They include procedural and SQL statements. They are the same thing as a function. You do not create them with SQL. They do not need to have a unique name. They include procedural and SQL statements. They are the same thing as a function. You do not create them with SQL. They do not need to have a unique name. ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Which of the following is true concerning triggers? They have an event, condition, and action. They execute against only some applications that access a database. They cannot cascade (cause another trigger to fire). You do not create them with SQL. They have an event, condition, and action. They execute against only some applications that access a database. They cannot cascade (cause another trigger to fire). You do not create them with SQL. ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Which of the following is true concerning systems information in an RDBMS? All of these This information can be accessed using SQL. This information often cannot be updated by a user. RDBMS store database definition information in system-created tables. All of these This information can be accessed using SQL. This information often cannot be updated by a user. RDBMS store database definition information in system-created tables. ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL The UNION clause is used to combine the output from multiple queries together into a single result table. True False True False ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL The following SQL is which type of join: SELECT CUSTOMER_T. CUSTOMER_ID, ORDER_T. CUSTOMER_ID, NAME, ORDER_ID FROM CUSTOMER_T,ORDER_T ; Equi-join Cartesian join Natural join Outer join Equi-join Cartesian join Natural join Outer join ANSWER DOWNLOAD EXAMIANS APP