Related questions
Question 69 - ADA-C01 discussion
An Administrator needs to create a sample of the table LINEITEM. The sample should not be repeatable and the sampling function should take the data by blocks of rows.
What select command will generate a sample of 20% of the table?
A.
select * from LINEITEM sample bernoulli (20);
B.
select * from LINEITEM sample system (20);
C.
select * from LINEITEM tablesample block (20 rows);
D.
select * from LINEITEM tablesample system (20) seed (1);
Your answer:
0 comments
Sorted by
Leave a comment first