Following are two columns of my database, I want to know what is the best collation/character set to be used if no special characters are expected. I expect special characters for FIRST_NAME but for DEPARTMENT I expect normal English characters.
Currently I have used utf8 for both but I do understand it can be performance overhead to use utf8 if not really required. I want to know what is the most efficient collation when VARCHAR is used for a field that expects normal english characters.
USER_FIRST_NAME(100) CHARACTER SET 'utf8' COLLATE 'utf8_unicode_ci' DEFAULT NULL,
DEPARTMENT VARCHAR(100) CHARACTER SET 'utf8' COLLATE 'utf8_unicode_ci' DEFAULT NULL,