Delete a Magpie table, optionally deleting the underlying data for the table.
Syntax
drop table [if exists] <table reference> [with delete]
Parameters
table reference
String. Name of the table to delete, optionally qualified by the schema name of the table.
Options
if exists
Only drop the table if it exists.
with delete
Delete the underlying data that this table references.