Description
The SQL
SELECT * FROM tab WHERE rand(1) < 2
evaluate rand(1) < 2 for rows one by one.
In fact, we can prune the filter condition.
The SQL
SELECT * FROM tab WHERE rand(1) < 2
evaluate rand(1) < 2 for rows one by one.
In fact, we can prune the filter condition.