DROP EXTERNAL ICEBERG TABLE

Syntax

DROP EXTERNAL TABLE [ IF EXISTS ] <table_identifier>;    

IF EXISTS

(Optional) To prevent the Upsolver query engine from returning an error if the table does not exist, include IF EXISTS in your DROP statement; instead, you will see the message Operation resulted in no change.


Example

DROP EXTERNAL TABLE IF EXISTS "my_test_table";

Last updated