1z1-071 Exam Question 296

Which three are true about system and object privileges
  • 1z1-071 Exam Question 297

    View the exhibit for the structure of the STUDENTand FACULTYtables.

    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?
  • 1z1-071 Exam Question 298

    View the Exhibit and examine the structure of the EMPLOYEES table.
    You want to display all employees and their managers having 100 as the MANAGER_ID. You want the output in two columns: the first column would have the LAST_NAME of the managers and the second column would have LAST_NAME of the employees.

    Which SQL statement would you execute?
  • 1z1-071 Exam Question 299

    View the exhibit and examine the structure of the CUSTOMERS table.

    Which two tasks would require subqueries or joins to be executed in a single statement? (Choose two.)
  • 1z1-071 Exam Question 300

    Which three are true about dropping columns from a table?