1z1-071 Exam Question 56

Examine the structure of the PROMOTIONS table: (Choose the best answer.)

Management requires a report of unique promotion costs in each promotion category.
Which query would satisfy this requirement?
  • 1z1-071 Exam Question 57

    Evaluate the following query:
    SQL> SELECT TRUNC (ROUND (156.00, -1),-1)
    FROM DUAL;
    What would be the outcome?
  • 1z1-071 Exam Question 58

    Evaluate the following SQL statement
    SQL>SELECT promo_id, prom _category FROM promotions
    WHERE promo_category='Internet' ORDER BY promo_id
    UNION
    SELECT promo_id, promo_category FROM Pomotions
    WHERE promo_category = 'TV'
    UNION
    SELECT promoid, promocategory FROM promotions WHERE promo category='Radio'
    Which statement is true regarding the outcome of the above query?
  • 1z1-071 Exam Question 59

    Which statement is true regarding external tables?
  • 1z1-071 Exam Question 60

    View the exhibit for the structure of the STUDENT and FACULTY tables.

    You need to display the faculty name followed by the number of students handled by the faculty at the base location.
    Examine the following two SQL statements:
    Statement 1
    SQL>SELECT faculty_name, COUNT(student_id)
    FROM student JOIN faculty
    USING (faculty_id, location_id)
    GROUP BY faculty_name;
    Statement 2
    SQL>SELECT faculty_name, COUNT(student_id)
    FROM student NATURAL JOIN faculty
    GROUP BY faculty_name;
    Which statement is true regarding the outcome?