You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EXPLAIN SELECT id, col_char, col_varchar, LEFT(col_text, 20) as text_preview,
116
+
LENGTH(col_longtext) as longtext_length, col_enum
117
+
FROM test_string_types ORDER BY id;
118
+
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
119
+
1 SIMPLE test_string_types NULL ALL NULL NULL NULL NULL 6 100.00 Using filesort; Using secondary engine Rapid
120
+
Warnings:
121
+
Note 1003 /* select#1 */ select `sh_test7`.`test_string_types`.`id` AS `id`,`sh_test7`.`test_string_types`.`col_char` AS `col_char`,`sh_test7`.`test_string_types`.`col_varchar` AS `col_varchar`,left(`sh_test7`.`test_string_types`.`col_text`,20) AS `text_preview`,length(`sh_test7`.`test_string_types`.`col_longtext`) AS `longtext_length`,`sh_test7`.`test_string_types`.`col_enum` AS `col_enum` from `sh_test7`.`test_string_types` order by `sh_test7`.`test_string_types`.`id`
122
+
SELECT id, col_char, col_varchar, LEFT(col_text, 20) as text_preview,
123
+
LENGTH(col_longtext) as longtext_length, col_enum
124
+
FROM test_string_types ORDER BY id;
125
+
id col_char col_varchar text_preview longtext_length col_enum
126
+
1 char varchar text text text text text 5000 medium
127
+
2 test another varchar text content 10000 large
128
+
3 0 small
129
+
4 new ad 0 small
130
+
5 as we fs 4 small
131
+
6 new ads sa 23 small
114
132
SELECT
115
133
CONCAT(col_char, '-', col_varchar) as concatenated,
0 commit comments