You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
8 lines
149 B
SQL
8 lines
149 B
SQL
select date_format(StartTime,'%Y%m%d') date,
|
|
description,
|
|
count(*),
|
|
sum(elapsedtime),
|
|
max(id)
|
|
from run_hist
|
|
group by 1,2
|
|
order by max(id); |