Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 서평
- 리눅스
- SQL
- Visualization
- 티스토리
- Blog
- 서평단
- Google Analytics
- 블로그
- Pandas
- 통계학
- Python
- MATLAB
- 월간결산
- 한빛미디어서평단
- python visualization
- matplotlib
- 파이썬
- 시각화
- tensorflow
- MySQL
- 독후감
- 한빛미디어
- Ga
- 딥러닝
- Linux
- 파이썬 시각화
- 매틀랩
- Tistory
- 텐서플로
Archives
- Today
- Total
목록파이썬 MySQL (1)
pbj0812의 코딩 일기
[Python] 쿼리가 기록된 txt 파일을 이용한 쿼리 실행(pymysql)
0. 플로우 차트 - 쿼리가 작성된 txt 를 읽어 해당 쿼리를 이용해 MySQL 에서 데이터를 가져온 뒤 pandas 의 DataFrame 형태로 출력 1. 텍스트 파일 내용 SELECT * FROM pbj_db.rownum_test; 2. 실습 1) library 호출 import pymysql import pandas as pd 2) db 연결 db = pymysql.connect(host='127.0.0.1', port=3306, user='root', db='pbj_db', charset='utf8', cursorclass=pymysql.cursors.DictCursor) cursor = db.cursor() 3) 파일 읽기 f = open("./sql.txt", 'r') sql = '' whi..
ComputerLanguage_Program/PYTHON
2021. 3. 2. 00:31