Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
DROP PROJECTION
On this page
Note
This is a Preview feature.
The DROP PROJECTION command 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: