I want to change the character-set of all tables present in my DB. To change character set of one table I can execute it as:
"alter table mydb.mytable1 CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_Ci;"
But i Have many tables in my 'my db' database. List of Tables we can read from information_schema table. But i am not sure how to form the Exact query so that with one query I can change character set of all the tables at once.