수색…


비고

DROP TABLE은 행, 색인, 권한 및 트리거와 함께 스키마에서 테이블 정의를 제거합니다.

단순한 드롭

Drop Table MyTable;

떨어 뜨리기 전에 존재 확인하기

MySQL 3.19
DROP TABLE IF EXISTS MyTable;
PostgreSQL 8.x
DROP TABLE IF EXISTS MyTable;
SQL Server 2005
If Exists(Select * From Information_Schema.Tables
          Where Table_Schema = 'dbo'
            And Table_Name = 'MyTable')
  Drop Table dbo.MyTable
SQLite 3.0
DROP TABLE IF EXISTS MyTable;


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow