반응형
import psycopg2
conn = psycopg2.connect(host='000.000.000.000', dbname='TestDb',user='postgres',password='XXXX',port=5432)
cursor=conn.cursor()
#Doping EMPLOYEE table if already exists.
cursor.execute("DROP TABLE IF EXISTS EMPLOYEE")
#Creating table as per requirement
sql ='''CREATE TABLE EMPLOYEE(
FIRST_NAME CHAR(20) NOT NULL,
LAST_NAME CHAR(20),
AGE INT,
SEX CHAR(1),
INCOME FLOAT
)'''
cursor.execute(sql)
print("Table created successfully........")
conn.commit()
#Closing the connection
conn.close()
반응형
'[====== Development ======] > Python' 카테고리의 다른 글
Python 불필요한 패키지 자동삭제 (0) | 2022.08.04 |
---|---|
Flask REST API Server (0) | 2022.07.29 |
Python 에서 문자열을 여러줄로 정의하는 방법 (0) | 2022.07.28 |
Pyhton 패키지 정보 저장및 한번에 설치하기 (0) | 2022.07.28 |
[Python] OutputDebugString 으로 DebugView에서 로그 출력 (0) | 2021.10.19 |