章节
- Python MySQL 入门
- Python MySQL 创建数据库
- Python MySQL 创建表
- Python MySQL 插入表
- Python MySQL Select
- Python MySQL Where
- Python MySQL Order By
- Python MySQL Delete
- Python MySQL 删除表
- Python MySQL Update
- Python MySQL Limit
- Python MySQL Join
对结果排序
可以使用ORDER BY语句,按升序或降序对结果排序。
默认情况下,ORDER BY关键字按升序排列结果。要按降序排列,可使用DESC关键字。
示例
按name
的字母顺序排列结果:
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="你的用户名",
passwd="你的密码",
database="mydatabase"
)
mycursor = mydb.cursor()
sql = "SELECT * FROM customers ORDER BY name"
mycursor.execute(sql)
myresult = mycursor.fetchall()
for x in myresult:
print(x)
ORDER BY DESC
使用DESC关键字,可按降序对结果排序。
示例
按name
的字母降序,对结果进行排序:
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="你的用户名",
passwd="你的密码",
database="mydatabase"
)
mycursor = mydb.cursor()
sql = "SELECT * FROM customers ORDER BY name DESC"
mycursor.execute(sql)
myresult = mycursor.fetchall()
for x in myresult:
print(x)
原文地址:https://www.cnblogs.com/jinbuqi/p/11595807.html
时间: 2024-11-04 16:11:44