Created
March 13, 2020 03:23
sogist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
-- Executed querie(s) at 2020-03-12 16:48:02 took 0.078 s -- | |
------------------------------------------------------------ | |
EXPLAIN SELECT JSON_EXTRACT(j.acts, CONCAT('$[', i.n - 1, ']')) AS act, | |
j.len, | |
i.n | |
FROM | |
(SELECT scores.actions AS acts, | |
JSON_LENGTH(subs.actions) AS len | |
FROM `table_scores` AS scores) AS j | |
INNER JOIN ints AS i ON i.n BETWEEN 1 AND j.len | |
------------------------------------------------------------ | |
*/ | |
+------+-------------+--------+-------+---------------+---------+---------+------+--------+--------------------------------------------------------------+ | |
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | | |
+------+-------------+--------+-------+---------------+---------+---------+------+--------+--------------------------------------------------------------+ | |
| 1 | SIMPLE | scores | ALL | NULL | NULL | NULL | NULL | 6 | | | |
| 1 | SIMPLE | i | range | PRIMARY | PRIMARY | 4 | NULL | 530258 | Using where; Using index; Using join buffer (flat, BNL join) | | |
+------+-------------+--------+-------+---------------+---------+---------+------+--------+--------------------------------------------------------------+ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment