Advanced SQL Which of the following is true concerning a procedure? They include procedural and SQL statements. You do not create them with SQL. They do not need to have a unique name. They are the same thing as a function. They include procedural and SQL statements. You do not create them with SQL. They do not need to have a unique name. They are the same thing as a function. ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL What type of join is needed when you wish to return rows that do have matching values? Equi-join Natural join Outer join All of these Equi-join Natural join Outer join All of these 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 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 ; Outer join Equi-join Cartesian join Natural join Outer join Equi-join Cartesian join Natural join ANSWER DOWNLOAD EXAMIANS APP
Advanced SQL Subqueries can be nested multiple times. False True False True 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 Equi-join Cartesian join Natural join Outer join Equi-join Cartesian join ANSWER DOWNLOAD EXAMIANS APP