表price,字段category,值55,求平均值字段pi
category, pi
55 100
55 105
56 130
55 95
55 80
59 115
55 101
55 98
如何计算字段pi的平均值(category为55的数据)
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
select avg(pi) as pi_avg from price where category=55