sample clause in sql code example
Example: sample clause in sql
Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);
Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);