‘LIMIT’ ifadesini kullanarak sorgudan döndürülen kayıt sayısını sınırlayabilirsiniz:
Örnek: ‘customers’ tablosundaki ilk 5 kaydı seçin:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import mysql.connector mydb = mysql.connector.connect( host="localhost", user="yourusername", password="yourpassword", database="mydatabase" ) mycursor = mydb.cursor() mycursor.execute("SELECT * FROM customers LIMIT 5") myresult = mycursor.fetchall() for x in myresult: print(x) |
Başka Bir Konumdan Başlayın
Üçüncü kayıttan başlayarak beş kayıt döndürmek istiyorsanız ‘OFFSET‘ anahtar sözcüğünü kullanabilirsiniz:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import mysql.connector mydb = mysql.connector.connect( host="localhost", user="yourusername", password="yourpassword", database="mydatabase" ) mycursor = mydb.cursor() mycursor.execute("SELECT * FROM customers LIMIT 5 OFFSET 2") myresult = mycursor.fetchall() for x in myresult: print(x) |
[…] MySQL Limit Kullanımı […]