v.25.5New Feature
Gives the possibility to truncate specific tables
Gives the possibility to truncate specific tables from a database, filtered with the LIKE keyword. #78597 (Yarik Briukhovetskyi).Why it matters
This feature enables users to efficiently truncate multiple tables in a database that match a pattern, simplifying management tasks and reducing the need for manual truncation of individual tables.How to use it
Use theTRUNCATE TABLE command combined with the LIKE keyword to specify a pattern for the tables to be truncated. For example:TRUNCATE TABLE database_name LIKE 'pattern%';