I am having an issue with a MySQL database. I have two copies of it: development and production. Today I realised that:
- The production database has the encoding format utf8_general_ci
- The development database has the encoding format latin1_swedish_ci.
My question:
Is it possible to change the encoding of my development database to look like the production one? How can I perform that in a easy way?
And, for the noobs like me, what are the main differences between the two formats. Which one would you recommend? Which one is the most standard on the industry?
Thanks in advance.