DROP TABLE#
Примечание
Ниже приведена оригинальная документация Trino. Скоро мы ее переведем на русский язык и дополним полезными примерами.
Синтаксис#
DROP TABLE [ IF EXISTS ] table_name
Описание#
Drops an existing table.
The optional IF EXISTS
clause causes the error to be suppressed if
the table does not exist.
Примеры#
Drop the table orders_by_date
:
DROP TABLE orders_by_date
Drop the table orders_by_date
if it exists:
DROP TABLE IF EXISTS orders_by_date