DROP FOREIGN TABLE deletes a specified foreign table.
DROP FOREIGN TABLE forcibly deletes a specified table. After a table is deleted, any indexes that exist for the table will be deleted. The functions and stored procedures used in this table cannot be run.
1 2 | DROP FOREIGN TABLE [ IF EXISTS ] table_name [, ...] [ CASCADE | RESTRICT ]; |
Sends a notice instead of an error if the specified table does not exist.
Specifies the name of the table.
Value range: An existing table name.
Delete the foreign table named customer_ft.
1 | DROP FOREIGN TABLE customer_ft; |