*I want to remove prefix from all table names in MySQL
I have a test database with more than 100 tables, so i don't want to go through a manual process or renaming each table.
e.g ci_categories ci_products
expected output: categories products
i want to remove prefix from all table, that is ci_
Is there a MySQL query to achieve this?
Thanks Amit