Python MySQL Limit
Posted 吴吃辣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python MySQL Limit相关的知识,希望对你有一定的参考价值。
章节
限制结果数量
可以使用“LIMIT”语句,限制查询返回的记录数量:
示例
在“customers”表中,选择前5条记录:
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="你的用户名",
passwd="你的密码",
database="mydatabase"
)
mycursor = mydb.cursor()
mycursor.execute("SELECT * FROM customers LIMIT 5")
myresult = mycursor.fetchall()
for x in myresult:
print(x)
从指定位置开始
如果想返回,从第3条记录开始的5条记录,可以使用“OFFSET”关键字:
示例
从位置3开始,返回5条记录:
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="你的用户名",
passwd="你的密码",
database="mydatabase"
)
mycursor = mydb.cursor()
mycursor.execute("SELECT * FROM customers LIMIT 5 OFFSET 2")
myresult = mycursor.fetchall()
for x in myresult:
print(x)
以上是关于Python MySQL Limit的主要内容,如果未能解决你的问题,请参考以下文章