nerdexam
Oracle

1Z0-071 · Question #71

Examine thestructure 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?

The correct answer is C. SELECT member_id AS "MEMBER ID", due_date AS "DUE DATE", '$2' AS "LATE. See the full explanation below for the reasoning.

Question

Examine thestructure 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?

Exhibit

1Z0-071 question #71 exhibit

Options

  • ASELECT member_id AS MEMBER_ID, due_date AS DUE_DATE, $2 AS LATE_FEE FROM
  • BSELECT member_id 'MEMBER ID', due_date 'DUE DATE', '$2 AS LATE FEE' FROM
  • CSELECT member_id AS "MEMBER ID", due_date AS "DUE DATE", '$2' AS "LATE
  • DSELECT member_id AS "MEMBER ID", due_date AS "DUE DATE", $2 AS "LATE

How the community answered

(39 responses)
  • A
    13% (5)
  • B
    3% (1)
  • C
    77% (30)
  • D
    8% (3)

Community Discussion

No community discussion yet for this question.

Full 1Z0-071 Practice