Hi.
I have a table temp. I applied new character set and collation in MYSQL with following query:
ALTER TABLE temp CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin;
Now I want to revert this back to what the table was before I changed the attributes. Is there a way I can do that?
Thanks for help in advance.