mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
14 lines
547 B
SQL
14 lines
547 B
SQL
drop table if exists tab;
|
|
|
|
create table tab (x UInt64, v UInt64) engine = ReplacingMergeTree(v) order by (x, sipHash64(x)) sample by sipHash64(x);
|
|
insert into tab select number, number from numbers(1000);
|
|
select * from tab final sample 1/2 order by x limit 5;
|
|
|
|
drop table tab;
|
|
|
|
create table tab (x UInt64, v UInt64) engine = ReplacingMergeTree(v) order by (x, sipHash64(x)) sample by sipHash64(x);
|
|
insert into tab select number, number from numbers(1000);
|
|
select sipHash64(x) from tab sample 1/2 order by x, sipHash64(x) limit 5;
|
|
|
|
drop table tab;
|