clickhouse中开窗函数的实现
clickhouse 实现 Hive 中的 max() over(partition by)数据准备DDL student.sqlcreate database if not exists testdb;;drop table if exists testdb.student;;create table testdb.student ENGINE = MergeTree partition by tuple() order by tuple()