-
[파이썬, pandas]sql 테이블 컬럼명 추출해서 리스트로 담기카테고리 없음 2022. 11. 30. 10:59
conn = self.conn cursor = conn.cursor() #db컬럼명만 추출하는 쿼리 sql = """select column_name from information_schema.columns where table_name = 'employee'""" cursor.execute(sql) df = pd.read_sql_query(sql, conn) cname = df.values.tolist()
sql 문 : 테이블의 전체 칼럼 이름 조회 하는 법
테이블 내에 전체 칼럼명을 조회하고 싶을때가 있다. 이럴때에는 정보를 저장하고 있는 information_schema 를 이용한다. 전체 테이블 정보 보려면 select * from information_schema.columns; 전체 테이블의 컬럼
wotres.tistory.com
판다스 DataFrame과 list, dictionary, ndarray 상호 변환
판다스 DataFrame과 list, dictionary, ndarray를 상호 변환하는 방법에 대해 정리한 글입니다.
ek-koh.github.io
반응형