您的位置:首页技术文章
文章详情页

mysql如何求指定字段数据的平均值

浏览:26日期:2022-06-12 16:59:55

问题描述

表price,字段category,值55,求平均值字段pi

category, pi55 10055 10556 13055 9555 8059 11555 10155 98

如何计算字段pi的平均值(category为55的数据)

问题解答

回答1:

select avg(pi) as pi_avg from price where category=55

相关文章: