Skip to content

Instantly share code, notes, and snippets.

@midnite81
Last active June 20, 2020 22:58
Show Gist options
  • Save midnite81/808c9ed473f5e2cccb2e5fafa06b9080 to your computer and use it in GitHub Desktop.
Save midnite81/808c9ed473f5e2cccb2e5fafa06b9080 to your computer and use it in GitHub Desktop.
Create sql statements to change a table to use InnoDB
SELECT CONCAT('ALTER TABLE `', table_name, '` ENGINE=InnoDB;') AS sql_statements
FROM information_schema.tables AS tb
WHERE table_schema = @DATABASE_NAME
AND `ENGINE` = 'MyISAM'
AND `TABLE_TYPE` = 'BASE TABLE'
ORDER BY table_name DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment