Oracle Database 12c SQL 1z0-071 Question # 70 Topic 8 Discussion

Oracle Database 12c SQL 1z0-071 Question # 70 Topic 8 Discussion

1z0-071 Exam Topic 8 Question 70 Discussion:
Question #: 70
Topic #: 8

Examine the description of the BOOKS_TRANSACTIONS table:

1z0-071 Question 70

Examine this partial SQL statement:

SELECT * FROM books_transactions

Which two WHERE conditions give the same result?


A.

WHERE (borrowed_date = SYSDATE AND transaction_type = 'RM') OR member_id IN ('A101','A102');


B.

WHERE borrowed_date = SYSDATE AND transaction_type = 'RM' OR member_id IN('A101','A102');


C.

WHERE borrowed_date = SYSDATE AND transaction_type = 'RM' OR member_id IN('A101','A102');


D.

WHERE borrowed_date = SYSDATE AND transaction_type = 'RM' AND (member_id = 'A101' OR member_id = 'A102'));


E.

WHERE borrowed_date = SYSDATE AND transaction_type = 'RM' AND member_id = 'A101' OR member_id = 'A102');


Get Premium 1z0-071 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.