mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
19 lines
509 B
Plaintext
19 lines
509 B
Plaintext
show status like '%window%';
|
|
|
|
create table t1 (a int, b int);
|
|
insert into t1 values (1, 10), (2, 20), (3, 30);
|
|
|
|
select a, b, rank() over (order by a) from t1;
|
|
show status like '%window%';
|
|
|
|
select a, b, rank() over (order by a), sum(a) over (order by a) from t1;
|
|
show status like '%window%';
|
|
|
|
--sorted_result
|
|
select t_a.r1, t_b.r2
|
|
from (select a, b, rank() over (order by a) as r1 from t1) t_a,
|
|
(select a, b, row_number() over (order by a) as r2 from t1) t_b;
|
|
show status like '%window%';
|
|
|
|
drop table t1;
|