-
[Python] pandas와 pymssql을 이용하여 MSSQL 연동Python/Python For Analytics 2020. 10. 5. 19:47
데이터 분석을 위해 CentOS 7(Linux)에서 MSSQL DB로 데이터를 gathering
1. pymssql은 pip install pymssql로 설치
2. pymssql로 DB에 접근하여, 쿼리 결과의 ROW를 Pandas의 DataFrame로 읽는다.
import pymssql import pandas as pd conn = pymssql.connect(host=' ', user=' ', password=' ', database=' ') querys= ''' SELECT 'PANDAS PYMSSQL TEST' ''' data = pd.read_sql(sql=querys, con=conn) conn.close() print(data) ============================================================================= 0 PANDAS PYMSSQL TEST
'Python > Python For Analytics' 카테고리의 다른 글
[ Python ] matplotlib plot Shading Area (특정구간 강조) (0) 2023.02.03 [ Python ] pandas를 이용한 bar graph (stacked) (0) 2022.03.01 [Python] wordcloud 만들기 (0) 2021.01.28 [Python] seaborn을 이용한 간단한 heatmap 그리기 (0) 2020.11.28 [Python] padnas Dataframe 에서 astype을 이용하여 숫자형으로 변환할 수 없을 때 to_numeric을 이용 (0) 2020.08.02 [Python] matplotlib - 그래프에 값 표시 하기 (1) 2020.08.02 [Python] matplotlib - lollipop graph (0) 2020.07.15 [Python] matplotlib - pie graph (0) 2020.07.09