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
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)- A13% (5)
- B3% (1)
- C77% (30)
- D8% (3)
Community Discussion
No community discussion yet for this question.
