性能的表在这个里面
fine_record_execute你要group by 后,求最大值,最小值,和平均值
select tname,
max(consume) 最大时间,
min(consume) 最小时间,
avg(consume) 平均时间,
avg(estimate) 平均内存
from
fine_record_execute
where todate(time)>='2024-10-19 00:00:00'
and tname like '%MS%'/*你的表名称与路径,或者不限制*/
group by tname