If I change the table type default collation to UTF8 from latin does it slow down the queries?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As always with with character sets (and collation should make not much difference), it depends.
Long Answer:
If I am not mistaken (someone else might correct me), the only performance difference it could cause, would be different size of stored data. And that depends on your stored data: If you store mostly English texts, then UTF-8 strings will be the same as latin1 strings, but for languages like French, UTF-8 strings can be longer than a special character set. But this effect only makes a difference when storing Russian, Arabic, CJK etc.
Short Answer:
No.