SET @arr := JSON_ARRAY(10, 20, 30); SELECT JSON_EXTRACT(@arr, '$[0]'); In other words, you simply use $[N], where N is the index of the element, ...
確定! 回上一頁