-
[Python] dataframe of pandas returns mysql / Maria DB resultPython/Python For Analytics 2019. 8. 8. 10:20
mysql / maria DB 쿼리의 결과를 pandas의 dataframe으로 만들기
import pymysql import pandas as pd db = pymysql.connect( host=' ', port= , user=' ', password=' ', db=' ', charset='utf8' ) SQL = "select * from table" df = pd.read_sql(SQL,db) print(df)
'Python > Python For Analytics' 카테고리의 다른 글
[Python] Pandas DataFrame 컬럼명 특정 문자로 변경 (0) 2019.09.25 [Python] pandas datetime 타입 시간/주/일 더하기 (0) 2019.09.06 [Python] list data type pandas의 DataFrame 만들기 (0) 2019.09.04 [Python] pandas를 이용한 IIS log 파싱 (0) 2019.08.30 [Python] pandas를 이용한 mariadb 결과값 다른 mariadb 테이블로 저장 (0) 2019.08.29 [Python] sqlite3 DB output to pandas dataframe. (sqlite3 db 퀄리결과 pandas dataframe 만들기) (0) 2019.08.12 [Python] Retrieving data from all sheets of Excel file using openpyxl and pandas (0) 2018.06.10 CSV 샘플 데이터 제공 사이트 (0) 2018.05.07