I read that it is best practise to have table names in Pascal Case (ThisIsMyTableName). Therefor I would like to change my tables in MySQL. But neither phpmyadmin, nore SQL
Use RENAME
RENAME
example:
RENAME TABLE this_is_my_table_name TO ThisIsMyTableName;
details : http://dev.mysql.com/doc/refman/5.1/en/rename-table.html