By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
version() |
---|
8.0.30 |
'abc' = 'abc ' | 'abc' = 'abc' |
---|---|
0 | 1 |
Records: 3 Duplicates: 0 Warnings: 0
name = 'abc ' | name = 'abc' | name | length(name) |
---|---|---|---|
1 | 1 | abc | 3 |
1 | 1 | abc | 4 |
0 | 0 | abc | 4 |
Records: 3 Duplicates: 0 Warnings: 0
name | name | length(t1.name) | length(t2.name) |
---|---|---|---|
abc | abc | 4 | 3 |
abc | abc | 3 | 3 |
abc | abc | 4 | 4 |
abc | abc | 3 | 4 |
abc | abc | 4 | 4 |
Table | Create Table |
---|---|
test | CREATE TABLE `test` ( `name` varchar(25) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci |