Charset Narrowing Optimization
utf8mb3_key_column=utf8mb4_expressionDescription
CREATE TABLE users (
user_name_mb4 VARCHAR(100) COLLATE utf8mb4_general_ci,
...
);CREATE TABLE orders (
user_name_mb3 VARCHAR(100) COLLATE utf8mb3_general_ci,
...,
INDEX idx1(user_name_mb3)
);Controlling the Optimization
References
Last updated
Was this helpful?

