Recherche…


Remarques

DROP TABLE supprime la définition de la table du schéma avec les lignes, les index, les autorisations et les déclencheurs.

Simple goutte

Drop Table MyTable;

Vérifier l'existence avant de laisser tomber

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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow