Advanced SQL The UNION clause is used to combine the output from multiple queries together into a single result table. False True False True ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL When AUTOCOMMIT is set on, changes will be made automatically at the end of each SQL statement. False True False True ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL How many tables may be included with a join? Two One Three All of these Two One Three All of these 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 Equi-join Outer join Cartesian join Natural join Equi-join Outer join Cartesian join ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL A correlated subquery is where the outer query depends on data from the inner query. False True False True ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Outer join is the same as equi-join, except one of the duplicate columns is eliminated in the result table. False True False True ANSWER DOWNLOAD EXAMIANS APP