lava-oushudb-dt-sql-parser/test/parser/spark/syntax/fixtures/dropTable.sql
琉易 d13a92914d
feat: spark sql DDL test (#170)
Co-authored-by: liuyi <liuyi@dtstack.com>
2023-10-09 09:49:48 +08:00

11 lines
222 B
SQL

-- Syntax
-- DROP TABLE [ IF EXISTS ] table_identifier [ PURGE ]
DROP TABLE userDB.employable;
DROP TABLE IF EXISTS employable;
DROP TABLE employable;
DROP TABLE IF EXISTS employable PURGE;
DROP TABLE employable PURGE;