🌱 Random samples in sql

Source

more random results vs speed

SAMPLING METHODTIMING
random()205ms
BERNOULLI54ms
SYSTEM13ms

Example returning 1% of the data in tableName

SELECT
  *
FROM
  tableName TABLESAMPLE BERNOULLI(1);
Made by Brandon . If you find this project useful you can donate.