Related questions
Question 43 - ADA-C01 discussion
MY_TABLE is a table that has not been updated or modified for several days. On 01 January 2021 at 07:01, a user executed a query to update this table. The query ID is
'8e5d0ca9-005e-44e6-b858-a8f5b37c5726'. It is now 07:30 on the same day.
Which queries will allow the user to view the historical data that was in the table before this query was executed? (Select THREE).
A.
SELECT * FROM my table WITH TIME_TRAVEL (OFFSET => -60*30);
B.
SELECT * FROM my_table AT (TIMESTAMP => '2021-01-01 07:00:00' :: timestamp);
C.
SELECT * FROM TIME_TRAVEL ('MY_TABLE', 2021-01-01 07:00:00);
D.
SELECT * FROM my table PRIOR TO STATEMENT '8e5d0ca9-005e-44e6-b858-a8f5b37c5726';
E.
SELECT * FROM my_table AT (OFFSET => -60*30);
F.
SELECT * FROM my_table BEFORE (STATEMENT => '8e5d0ca9-005e-44e6-b858-a8f5b37c5726');
Your answer:
0 comments
Sorted by
Leave a comment first