Reputation: 21
Following commands gives the charset info
SHOW VARIABLES WHERE Variable_name LIKE 'character\_set\_%' OR Variable_name LIKE 'collation%'
Screenshot here
Any idea how to change character_set_client to utf8mb4 ??
Upvotes: 0
Views: 1430
Reputation: 2480
Did you try this ?
SET character_set_client = 'utf8mb4';
Upvotes: 1