The ORDERS table contains 12,000 rows.
Which query will return 10 rows that are randomly sampled from the table every time the query is run?
select * from ORDERS fetch 10;
select * from ORDERS limit 10;
select * from ORDERS sample (10);
select * from ORDERS tablesample (10 rows);
Submit