批量修改表前缀

SELECT
	CONCAT(
		'ALTER TABLE ',
		table_name,
		' RENAME TO wt_',
		substring(table_name, 4),
		';'
	)
FROM
	information_schema. TABLES
WHERE table_name LIKE 'kt_%';