1z0-071 Exam Question 121

Examine the structure of the BOOKS_TRANSACTIONStable:

You want to display the member IDs, due date, and late fee as $2 for all transactions.
Which SQL statement must you execute?
SELECT member_id AS MEMBER_ID, due_date AS DUE_DATE, $2 AS LATE_FEE FROM
  • 1z0-071 Exam Question 122

    Which two are true about the data dictionary? (Choose two.)
  • 1z0-071 Exam Question 123

    Which two statements are true about sequences created in a single instance database? (Choose two.)
  • 1z0-071 Exam Question 124

    In the customers table, the CUST_CITY column contains the value 'Paris' for the CUST_FIRST_NAME 'Abigail'.
    Evaluate the following query:

    What would be the outcome?
  • 1z0-071 Exam Question 125

    View the Exhibit and examine the description of the EMPLOYEES table.

    You want to calculate the total renumeration for each employee. Total renumeration is the sum of the annual salary and the percentage commission earned for a year. Only a few employees earn commission.
    Which SQL statement would you execute to get the desired output?