mysql - Does changing charset effect joins performance -
I have multiple databases on the server I add cross databases. Tables are of different charsets I have read that if I join such tables then this will be a problem for the display. So if I do all the DB / Tables as 1 character, will it help in the display? Will this create any problems for other common questions? Which is better UTF 8 or Latin?
Yes, comparing text columns of different character sets can not use any one index Therefore, it is doing a table-scanning on the second table in the first column of for every line , it kills the performance. I just recommend going with the EF8 since the beginning, if this is the text because if a person submits utf8 characters in your app and then the app stores them in a Latin 1 field, So it's a mess to clean it.
Comments
Post a Comment