일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 예제
- 디렉토리
- visual studio code
- 파이썬
- 우분투
- 프로그래머스
- MySQL
- matplotlib
- 원격저장소
- 라이브러리
- 엑셀
- 데이터베이스
- 단축키
- vscode
- 플라스크
- 아나콘다
- 에러
- 깃허브
- 디버깅
- OpenCV
- 운영체제
- 역할
- SQL
- 판다스
- 머신러닝
- 데이터분석
- 가상환경
- 리눅스
- 코랩
- 기초
Archives
- Today
- Total
취미와 밥줄사이
[Python] MySQL Drop Table 본문
테이블 삭제
- "DROP TABLE"문을 사용하여 존재하는 테이블 삭제할 수 있다.
-
# Delete the table "customers" import mysql.connector mydb = mysql.connector.connect( host="localhost", user="your username", password="your password", database="mydatabase" ) mycursor = mydb.cursor() sql = "DROP TABLE customers" mycursor.execute(sql)
테이블이 존재하는 경우에만 삭제
- 삭제하려는 테이블이 이미 삭제되었거나 다른 이유로 존재하지 않는 경우 IF EXISTS 키워드를 사용하여 오류가 발생하지 않도록 할 수 있습니다.
-
# Delte the table "customers" if it exists import mysql.connector mydb = mysql.connector.connect( host="localhost", user="your username", password="your password", database="mydatabase" ) mycursor = mydb.cursor() sql = "DROP TABLE IF EXISTS customers" mycursor.execute(sql)
REFERENCE
https://www.w3schools.com/python/python_mysql_drop_table.asp
'DB' 카테고리의 다른 글
[Python] MySQL Limit (0) | 2021.10.28 |
---|---|
[Python] MySQL Update Table (0) | 2021.10.28 |
[Python] MySQL Delete From By (0) | 2021.10.28 |
[Python] MySQL Order By (0) | 2021.10.28 |
[Python] MySQL Where절 사용하기 (0) | 2021.10.28 |