lava-oushudb-dt-sql-parser/test/parser/spark/syntax/fixtures/dropView.sql

10 lines
146 B
MySQL
Raw Normal View History

-- Syntax
-- DROP VIEW [ IF EXISTS ] view_identifier
DROP VIEW employeeView;
DROP VIEW userDB.employeeView;
DROP VIEW IF EXISTS employeeView;