“Como truncar toda a tabela em MySQL Workbench” Respostas de código

Como truncar toda a tabela em MySQL Workbench

SELECT
    Concat('TRUNCATE TABLE ', TABLE_NAME)
FROM
    INFORMATION_SCHEMA.TABLES
WHERE
    table_schema = 'db_name';
Fierce Fox

truncar todas as tabelas

SELECT Concat('TRUNCATE TABLE ',table_schema,'.',TABLE_NAME, ';') 
FROM INFORMATION_SCHEMA.TABLES where  table_schema in ('db1_name','db2_name');
Raising Star

Respostas semelhantes a “Como truncar toda a tabela em MySQL Workbench”

Perguntas semelhantes a “Como truncar toda a tabela em MySQL Workbench”

Mais respostas relacionadas para “Como truncar toda a tabela em MySQL Workbench” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código