본문 바로가기
IT일반

파이썬 Mysql 컬럼 이름으로 데이터 가져오기

by xavi2019 2022. 11. 6.
cur = conn.cursor()
cur.execute(sql)
res = [dict((cur.description[i][0], value) for i, value in enumerate(row)) for row in cur.fetchall()]

 

댓글