drop table

Description

Removes a table definition and all of its data, indexes, triggers, and authorization specifications from the database.

Syntax

drop table [[database.]owner.]table_name

Parameters

table_name

is the name of the table to be dropped.

Examples

Example 1

drop table authors

Usage