Closed ADBond closed 2 months ago
SAMPLE n is only allowed when you specify the method in table creation, so unsuitable for use in a CTE. See relevant docs page for details.
SAMPLE n
Instead we use a uniform random number on [0, 1] in a WHERE clause.
WHERE
SAMPLE n
is only allowed when you specify the method in table creation, so unsuitable for use in a CTE. See relevant docs page for details.Instead we use a uniform random number on [0, 1] in a
WHERE
clause.