일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 플라스크
- 운영체제
- visual studio code
- 머신러닝
- 깃허브
- 데이터베이스
- vscode
- SQL
- 엑셀
- 프로그래머스
- 판다스
- 코랩
- MySQL
- 원격저장소
- 데이터분석
- 디렉토리
- matplotlib
- 리눅스
- OpenCV
- 에러
- 기초
- 역할
- 단축키
- 라이브러리
- 가상환경
- 예제
- 아나콘다
- 우분투
- 디버깅
- 파이썬
Archives
- Today
- Total
취미와 밥줄사이
[Python] MySQL Update Table 본문
테이블 업데이트
- "UPDATE" 문을 사용하여 테이블에 존재하는 records를 업데이트 할 수 있다.
-
# Overwrite the address column from "Valley 345" to "Canyoun 123" import mysql.connector mydb = mysql.connector.connect( host="localhost", user="your username", password="your password", database="mydatabase" ) mycursor = mydb.cursor() sql = "UPDATE customers SET address = "Canyon 123' WHERE address = 'Valley 345'" mycursor.execute(sql) mydb.commit() print(mycursor.rowcount, "record(s) affected")
- mydb.commit() 명령문이 없다면 테이블이 변경되지 않습니다.
- WHERE절은 업데이트해야 하는 레코드를 지정합니다.
- WHERE절을 생략하면 모든 record가 업데이트 됩니다.
-
# Escape values by using the placholder %s method import mysql.connector mydb = mysql.connecotr.connect( host="localhost", user="your username", password="your password", database="mydatabase" ) mycursor = mydb.cursor() sql = "UPDATE customers SET address = %s WHERE address = %s" val = ("Valley 345", "Canyon 123") mycursor.execute(sql, val) mydb.commit() print(mycursor.rowcount, "record(s) affected")
REFERENCE
https://www.w3schools.com/python/python_mysql_update.asp
'DB' 카테고리의 다른 글
[Python] MySQL Join (0) | 2021.10.28 |
---|---|
[Python] MySQL Limit (0) | 2021.10.28 |
[Python] MySQL Drop Table (0) | 2021.10.28 |
[Python] MySQL Delete From By (0) | 2021.10.28 |
[Python] MySQL Order By (0) | 2021.10.28 |