[DRAFT]This page is not published. Only visible in development mode.
Drop & Cleanup
Remove tables, views, namespaces, and other schema objects when they are no longer needed.
Drop a Table
$ Drop Table
DROP TABLE removes a table and all its data. This is permanent.
Conditional Drop
$ Drop If Exists
Use IF EXISTS to avoid errors when dropping something that may not exist. Works with tables, views, namespaces, ringbuffers, and other objects.
