drop
drop 语句用于删除数据库或者数据表。建库建表语句请参考 create。
删除分布式数据库
语法
drop database [if exists] dbPath
参数
dbPath 数据库的路径。
例子
drop database if exists "dfs://test"
相关函数:dropDatabase, existsDatabase
删除分布式表或维度表
语法
drop table [if exists] dbPath.tableName
参数
-
dbPath 字符串,表示数据库的路径。
-
tableName 字符串,分布式表和维度表的表名。
例子
drop table if exists "dfs://test"."pt"
相关函数:dropTable, existsTable
删除内存表
语法
drop table [if exists] tableName
参数
tableName 与内存表对象同名的字符串。