v.24.4New Feature

Supports Dropping Multiple Tables Simultaneously

Supports dropping multiple tables at the same time like DROP TABLE a, b, c;. #58705 (zhongyuankai).
Supports dropping multiple tables simultaneously using syntax like DROP TABLE a, b, c.

Why it matters

This feature allows users to delete several tables in a single command, improving efficiency and convenience when managing multiple tables that need to be removed at once.

How to use it

Use the DROP TABLE statement followed by a comma-separated list of table names to drop multiple tables in one command, for example:

DROP TABLE a, b, c;