Aditya Singh
Aditya Singh

Reputation: 21

How to update character_set_client to utf8mb4 in mysql 5.5.x

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

Answers (1)

Daniel E.
Daniel E.

Reputation: 2480

Did you try this ?

SET character_set_client = 'utf8mb4';

Upvotes: 1

Related Questions