일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 깃허브
- 단축키
- 우분투
- MySQL
- 머신러닝
- 원격저장소
- 코랩
- 에러
- 플라스크
- 운영체제
- 라이브러리
- 리눅스
- 디렉토리
- 파이썬
- 디버깅
- vscode
- 기초
- 역할
- 데이터베이스
- 프로그래머스
- 가상환경
- SQL
- 엑셀
- matplotlib
- 판다스
- 데이터분석
- 아나콘다
- 예제
- visual studio code
- OpenCV
Archives
- Today
- Total
취미와 밥줄사이
[Python] MySQL Limit 본문
Limit the Result
- "LIMIT"문을 사용하여 쿼리로 부터 반환되는 records수를 제한할 수 있다.
-
# Select the 5 first records in the "customers" table import mysql.connector mydb = mysql.connector.connect( host="localhost", user="yourusername", password="your password", database="mydatabase" ) mycursor = mydb.cursor() mycursor.execute("SELECT * FROM customers LIMIT 5") myresult = mycursor.fetchall() for x in myresult: print(x)
다른 위치에서 시작
- 세 번째 records부터 5개의 records를 반환하려면 "OFFSET" 키워드를 사용할 수 있습니다.
-
# Start from position 3, and return 5 records import mysql.connector mydb = mysql.connector.connect( host="localhost", user="your username", password="your password", database="mydatabase" ) mycursor = mydb.cursor() mycursor.execute("SELECT * FROM customers LIMIT 5 OFFSET 2"0 myresult = mycursor.fetchall() for x in myresult: print(x)
REPERENCE
https://www.w3schools.com/python/python_mysql_limit.asp
'DB' 카테고리의 다른 글
[Python] MongoDB (0) | 2021.10.28 |
---|---|
[Python] MySQL Join (0) | 2021.10.28 |
[Python] MySQL Update Table (0) | 2021.10.28 |
[Python] MySQL Drop Table (0) | 2021.10.28 |
[Python] MySQL Delete From By (0) | 2021.10.28 |