Answers for "how to truncate all table in mysql"

SQL
0

how to truncate all table in mysql workbench

SELECT
    Concat('TRUNCATE TABLE ', TABLE_NAME)
FROM
    INFORMATION_SCHEMA.TABLES
WHERE
    table_schema = 'db_name';
Posted by: Guest on November-24-2020

Code answers related to "how to truncate all table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language