标签: avg函数
thumbnail
new

sql的Avg函数怎么用

Avg函数用于计算一列数据的平均值,语法如下: SELECT AVG(column_name) FROM table_name; 其中,column_name为要计算平均值的列名,table_name为数据表名。 ……