Mysql
 sql >> Database >  >> RDS >> Mysql

Inserisci l'ultimo elemento in un array JSON in MySQL 5.7

puoi usare :

SELECT JSON_EXTRACT(`from`,CONCAT("$[",JSON_LENGTH(`from`)-1,"]"))      FROM `table`;

per ottenere l'ultimo elemento in un array json.