일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 플라스크
- 운영체제
- vscode
- 원격저장소
- 역할
- 아나콘다
- 데이터분석
- 깃허브
- matplotlib
- 단축키
- 판다스
- 기초
- 예제
- 프로그래머스
- 리눅스
- 머신러닝
- 엑셀
- OpenCV
- MySQL
- 파이썬
- visual studio code
- 데이터베이스
- 라이브러리
- SQL
- 우분투
- 가상환경
- 디버깅
- 에러
- 디렉토리
- 코랩
Archives
- Today
- Total
취미와 밥줄사이
[Python] MySQL Order By 본문
결과 정렬하기
- ORDER BY문을 사용하면 결과를 내림차순 혹은 오름차순으로 정렬할 수 있다.
- ORDERT BY 키워드는 기본적으로 오름차순으로 결과를 정렬한다.
- 내림차순으로 정렬하기 위해서는 DESC 키워드를 사용한다.
-
# Sort the result alphabetically by name: import mysql.connector.connect( host="localhost", user="your username", password="your password", database="mydatabase" ) mycursor = mydb.cursor() sql = "SELECT * FROM customers ORDER BY name" mycursor.execute(sql) myresult = mycursor.fetchall() for x in myresult: print(x)
내림차순 정렬
- DESC 키워드를 사용하여 내림차순 정렬하기
-
# Sort the rssult reverse alphabetically by name import mysql.connector mydb = mysql.connector.connect( host="localhost", user="your username", password="your password", 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)
REFERENCE
https://www.w3schools.com/python/python_mysql_orderby.asp
'DB' 카테고리의 다른 글
[Python] MySQL Drop Table (0) | 2021.10.28 |
---|---|
[Python] MySQL Delete From By (0) | 2021.10.28 |
[Python] MySQL Where절 사용하기 (0) | 2021.10.28 |
[Python] MySQL Select From (0) | 2021.10.28 |
[Python] MySQL Insert Into Table (0) | 2021.10.27 |