/
DROP TABLE
DROP TABLE
Drops a table.
Syntax
DROP TABLE [schema_name.]table_name;
Description
Internally, the command only marks a table for deletion. The dropped table is physically deleted later by the background maintenance service. New queries will not see the dropped table, but in-flight queries will finish executing successfully, as if they finished execution right before the table was dropped.
See Also
, multiple selections available,
Related content
DROP TABLE
DROP TABLE
More like this
TRUNCATE TABLE
TRUNCATE TABLE
More like this
TRUNCATE TABLE
TRUNCATE TABLE
More like this
DROP SCHEMA
DROP SCHEMA
More like this
DROP RANGE INDEX
DROP RANGE INDEX
More like this
DROP VIEW
DROP VIEW
More like this