One option may include all lower or upper table names according to the needs of your OS.
select concat('rename table ', table_name, ' to ' , lower(table_name) , ';') from information_schema.tables where table_schema = 'your_schema_name';
copy all the lines and execute them :)
source
share