Answers for "how to truncate all tables in mysql"

SQL
10

truncate table mysql

TRUNCATE TABLE `fourniture`
Posted by: Guest on April-01-2020
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 tables in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language