rename particular name form all tables in mysql code example
Example 1: how to edit table name in mysql
RENAME TABLE tb1 TO tb2;
Example 2: rename table in mysql
RENAME TABLE old_table TO new_table;
Example 3: rename table column name in mysql
ALTER TABLE table_name CHANGE old_column_name new_column_name datatype(length);