Free Oracle 1Z0-071 Exam Braindumps

Examine the structure of the MEMBERS table.


Which query can be used to display the last names and city names only for members from the states MO and MI?

  1. SELECT last_name, city FROM members WHERE state ='MO' AND state ='MI';
  2. SELECT last_name, city FROM members WHERE state LIKE 'M%';
  3. SELECT last_name, city FROM members WHERE state IN ('MO', 'MI');
  4. SELECT DISTINCT last_name, city FROM members WHERE state ='MO' OR state ='MI';

Answer(s): C



Which statement is true about an inner join specified in a query’s WHERE clause?

  1. It only applies for equijoin conditions.
  2. It applies for equijoin and nonequijoin conditions.
  3. It requires column names to be the same in all tables being joined.
  4. It must have primary-key and foreign-key constraints defined on the join columns.

Answer(s): B



Which task can be performed by using a single Data Manipulation Language (DML) statement?

  1. adding a column constraint while inserting a row into a table
  2. adding a column with a default value while inserting a row into a table
  3. removing all data only from a single column on which a unique constraint is defined
  4. removing all data only from a single column on which a primary key constraint is defined

Answer(s): C



Examine the structure of the BOOKS_TRANSACTIONS table:


You want to display the member IDs, due date, and late fee as $2 for all transactions.
Which SQL statement must you execute?

  1. SELECT member_id AS MEMBER_ID, due_date AS DUE_DATE, $2 AS LATE_FEE FROM
    BOOKS_TRANSACTIONS;
  2. SELECT member_id 'MEMBER ID', due_date 'DUE DATE', '$2 AS LATE FEE' FROM BOOKS_TRANSACTIONS;
  3. SELECT member_id AS "MEMBER ID", due_date AS "DUE DATE", '$2' AS "LATE FEE"
    FROM BOOKS_TRANSACTIONS;
  4. SELECT member_id AS "MEMBER ID", due_date AS "DUE DATE", $2 AS "LATE FEE" FROM BOOKS_TRANSACTIONS;

Answer(s): C



Viewing page 10 of 95
Viewing questions 37 - 40 out of 380 questions



Post your Comments and Discuss Oracle 1Z0-071 exam prep with other Community members:

1Z0-071 Exam Discussions & Posts