1z0-071 Exam Question 151

Examine the structure of the DEPARTMENTS table.

You execute the following command:

Which two statements are true?
  • 1z0-071 Exam Question 152

    Which three privileges can be restricted to a subset of columns in a table? (Choose three.)
  • 1z0-071 Exam Question 153

    You create a table by using this command:
    CREATE TABLE rate_list (rate NUMBER(6,2));
    Which two are true about executing statements? (Choose two.)
  • 1z0-071 Exam Question 154

    Evaluate the following SQL statement:
    SQL> select cust_id, cust_last_name "Last name"
    FROM customers
    WHERE country_id = 10
    UNION
    SELECT cust_id CUST_NO, cust_last_name
    FROM customers
    WHERE country_id = 30
    Identify three ORDER BY clauses either one of which can complete the query.
  • 1z0-071 Exam Question 155

    Examine the structure of the MEMBERStable:
    Name Null? Type
    ------------------ --------------- ------------------------------
    MEMBER_ID NOT NULL VARCHAR2 (6)
    FIRST_NAME VARCHAR2 (50)
    LAST_NAME NOT NULL VARCHAR2 (50)
    ADDRESS VARCHAR2 (50)
    You execute the SQL statement:
    SQL > SELECT member_id, ' ' , first_name, ' ' , last_name "ID FIRSTNAME LASTNAME
    " FROM members;
    What is the outcome?