CODEDRAGON ㆍDevelopment/Python
1
데이터 베이스에 UPDATE, DELETE 쿼리문을 수행하고 Commit하는 프로그램입니다. 해당 코드를 완성하시오.
import pymysql
conn = ①_________________________.connect(host='localhost', user='dsuser', password='mysqlpw', db='dsdb', charset='utf8')
curs = conn.②_________________________()
# Region이 "seoul"인 데이타를 모두 "서울"로 변경 sql = """③_________________________ customer set region = '서울' where region = 'seoul'""" curs.execute(sql)
# id가 6인 customer 데이타를 삭제 sql = "delete from customer where id=④_________________________" curs.execute(sql, 7)
conn.commit()
# 데이터 확인하기 sql = "select * from customer" curs.⑤_________________________(sql)
# 데이타 Fetch rows = curs.⑥_________________________()
# 전체 rows # 전체 row들을 Tuple의 Tuple로서 출력 print(rows)
⑦_________________________.close() |
import pymysql
conn = pymysql.connect(host='localhost', user='dsuser', password='mysqlpw', db='dsdb', charset='utf8')
curs = conn.cursor()
# Region이 "seoul"인 데이타를 모두 "서울"로 변경 sql = """update customer set region = '서울' where region = 'seoul'""" curs.execute(sql)
# id가 6인 customer 데이타를 삭제 sql = "delete from customer where id=%s" curs.execute(sql, 7)
conn.commit()
# 데이터 확인하기 sql = "select * from customer" curs.execute(sql)
# 데이타 Fetch rows = curs.fetchall()
# 전체 rows # 전체 row들을 Tuple의 Tuple로서 출력 print(rows)
conn.close() |
'Development > Python' 카테고리의 다른 글
dtype (0) | 2019.11.15 |
---|---|
AttributeError: module 'xxx' has no attribute 'xxx' (0) | 2019.11.14 |
2002년 한일월드컵 기간의 기온 공공데이터 가져오기 (0) | 2019.11.14 |
행/열 합계 - sum() (0) | 2019.11.13 |
교환 법칙과 분배 법칙 (0) | 2019.11.12 |