DROP PROJECTION
On this page
Note
This is a Preview feature.
Drops an existing projection.
Syntax
DROP PROJECTION <projection_name> ON [database_name.]<table_name>
Arguments
-
projection_: The name of the projection that was created using thename CREATE PROJECTIONcommand. -
database_: The database where the projection's base table is located.name This argument is optional. -
table_: The name of the table the projection is created on.name
Example
-
Delete a projection.
DROP PROJECTION lineitem_sort_shipdate ON lineitem; -
Database names can be referenced in the
DROP PROJECTIONcommand.DROP PROJECTION lineitem_sort_shipdate ON testdb1.lineitem;
Last modified: February 20, 2026