logo

CuriousTab

CuriousTab

Discussion


Home Database Advanced SQL Comments

  • Question
  • What type of join is needed when you wish to return rows that do have matching values?


  • Options
  • A. Equi-join
  • B. Natural join
  • C. Outer join
  • D. All of the above.

  • Correct Answer
  • All of the above. 


  • Advanced SQL problems


    Search Results


    • 1. What type of join is needed when you wish to include rows that do not have matching values?

    • Options
    • A. Equi-join
    • B. Natural join
    • C. Outer join
    • D. All of the above.
    • Discuss
    • 2. Which of the following is true concerning triggers?

    • Options
    • A. You do not create them with SQL.
    • B. They execute against only some applications that access a database.
    • C. They have an event, condition, and action.
    • D. They cannot cascade (cause another trigger to fire).
    • Discuss
    • 3. When mapping a multivalued attribute into a relation which of the following is true?

    • Options
    • A. One relation is created.
    • B. Two relations are created.
    • C. Three relations are created.
    • D. Four relations are created.
    • Discuss
    • 4. When mapping a supertype/subtype relationship which of the following is true?

    • Options
    • A. The supertype primary key is assigned to each subtype.
    • B. The subtype primary key is assigned to each supertype.
    • C. There is no link between the supertype/subtype entities.
    • D. There is no primary key/foreign key relationship between a supertype/subtype.
    • Discuss
    • 5. When mapping a ternary relationship with an associative entity into a relation which of the following is true?

    • Options
    • A. One relation is created.
    • B. Two relations are created.
    • C. Three relations are created.
    • D. Four relations are created.
    • Discuss
    • 6. Embedded SQL is which of the following?

    • Options
    • A. Hard-coded SQL statements in a program language such as Java.
    • B. The process of making an application capable of generating specific SQL code on the fly.
    • C. Hard-coded SQL statements in a procedure.
    • D. Hard-coded SQL statements in a trigger.
    • Discuss
    • 7. Which of the following statements is true concerning subqueries?

    • Options
    • A. Involves the use of an inner and outer query.
    • B. Cannot return the same result as a query that is not a subquery.
    • C. Does not start with the word SELECT.
    • D. All of the above.
    • Discuss
    • 8. 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

    • Options
    • A. Equi-join
    • B. Natural join
    • C. Outer join
    • D. Cartesian join
    • Discuss
    • 9. A UNION query is which of the following?

    • Options
    • A. Combines the output from no more than two queries and must include the same number of columns.
    • B. Combines the output from no more than two queries and does not include the same number of columns.
    • C. Combines the output from multiple queries and must include the same number of columns.
    • D. Combines the output from multiple queries and does not include the same number of columns.
    • Discuss
    • 10. Which of the following is one of the basic approaches for joining tables?

    • Options
    • A. Subqueries
    • B. Union Join
    • C. Natural join
    • D. All of the above
    • Discuss


    Comments

    There are no comments.

Enter a new Comment