HomeMogDBMogDB StackUqbar
v2.1

Documentation:v2.1

Supported Versions:

DROP FOREIGN TABLE

Function

DROP FOREIGN TABLE drops a foreign table.

Precautions

DROP FOREIGN TABLE forcibly drops the specified table and the indexes depending on the table. After the table is dropped, the functions and stored procedures that need to use this table cannot be executed.

Syntax

DropForeignTable ::= DROP FOREIGN TABLE [ IF EXISTS ]
    table_name [, ...] [ CASCADE | RESTRICT ];

Parameter Description

  • IF EXISTS

    Reports a notice instead of an error if the specified table does not exist.

  • table_name

    Table name

    Value range: an existing table name

  • CASCADE | RESTRICT

    • CASCADE: automatically drops the objects (such as views) that depend on the table.
    • RESTRICT: refuses to drop the table if any objects depend on it. This is the default action.

ALTER FOREIGN TABLE and CREATE FOREIGN TABLE

Copyright © 2011-2024 www.enmotech.com All rights reserved.