用Python解释MySQL中AVG()函数的使用?
该AVG()函数是MySQL中的算术函数之一。
顾名思义,该AVG()函数用于返回表中数字列的平均值。
语法
SELECT AVG(column_name) FROM table_name
AVG()在 python 中使用 MySQL 在表上使用函数需要遵循的步骤
导入 MySQLl 连接器
使用连接器建立连接 connect()
使用cursor()方法创建游标对象
使用适当的 mysql 语句创建查询
使用execute()方法执行 SQL 查询
关闭连接
假设我们有下表名为“Students”。
学生
+----------+-----------+| name | marks |
+----------+-----------+
| Rohit | 62 |
| Rahul | 75 |
| Inder | 99 |
| Khushi | 49 |
| Karan | 92 |
+----------+-----------+
我们想得到学生的平均分数。
示例
import mysql.connector输出结果db=mysql.connector.connect(host="your host", user="your username", password="your
password",database="database_name")
cursor=db.cursor()
query1="SELECT AVG(marks) FROM Students"
cursor.execute(query1)
avg=cursor.fetchall()
print(“Average marks :”,avg)
db.close()
Average marks : 75.4
以上是 用Python解释MySQL中AVG()函数的使用? 的全部内容, 来源链接: utcz.com/z/352675.html