blob: 4a5bbf945bbca0e680414f1a5b8b86b492814d81 (
plain) (
blame)
1
2
3
4
5
6
7
|
/* syntax version 1 */
/* postgres can not */
USE plato;
$percent = Math::Ceil(0.2);
SELECT * FROM Input TABLESAMPLE BERNOULLI(Math::Ceil(100 * $percent)) ORDER BY key; -- 100% sample
|