Advanced SQL A transaction is the complete set of closely related update commands that must all be done, or none of them done, for the database to remain valid. 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 WHERE CUSTOMER_T. CUSTOMER_ID = ORDER_T. CUSTOMER_ID Natural join Outer join Cartesian join Equi-join Natural join Outer join Cartesian join Equi-join ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Embedded SQL is which of the following? The process of making an application capable of generating specific SQL code on the fly. Hard-coded SQL statements in a program language such as Java. Hard-coded SQL statements in a procedure. Hard-coded SQL statements in a trigger. The process of making an application capable of generating specific SQL code on the fly. Hard-coded SQL statements in a program language such as Java. Hard-coded SQL statements in a procedure. Hard-coded SQL statements in a trigger. ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Which of the following statements is true concerning routines and triggers? Both have to be called to operate. Both are stored in the database. Both run automatically. Both consist of procedural code. Both have to be called to operate. Both are stored in the database. Both run automatically. Both consist of procedural code. ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL The most frequently used relational operation, which brings together data from two or more related tables into one resultant table, is called an equi-join. False True False True ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Subqueries can be nested multiple times. True False True False ANSWER DOWNLOAD EXAMIANS APP