Skip to content

DROP TABLE

Remove Lance tables from the catalog.

Drop table (also removes data):

DROP TABLE users;

Drop table if it exists (no error if table doesn't exist):

DROP TABLE IF EXISTS users;