v.20.4New Feature
Support DROP VIEW Statement for TPC-H Compatibility
Support DROP VIEW statement for better TPC-H compatibility. #9831 (Amos Bird)Why it matters
This feature addresses the lack of aDROP VIEW statement in ClickHouse, enabling users to remove views as part of their database management tasks. It improves compliance with TPC-H standards and facilitates smoother schema evolution and cleanup in ClickHouse environments.How to use it
Users can now drop existing views using the standard SQL syntax:DROP VIEW [IF EXISTS] view_nameThis statement removes the specified view from the database.