what's the SQL command for changing the collation into utf8 for all the tables within a database?
i tried to do that in mysqladmin, but that only changed the collation of the database, no effect on the created tables. i can change one table in one time using: ALTER TABLE <tablename> DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
how do i do it in one go?
thanks.