Sök…


Anmärkningar

DROP TABLE tar bort tabelldefinitionen från schemat tillsammans med rader, index, behörigheter och triggers.

Enkel droppe

Drop Table MyTable;

Kontrollera att det finns före du tappar

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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow