So fügen Sie neue Elemente zur JSON-Variablen in MySQL hinzu
Davon: Wert = ['123'] Mach das: Wert = ['123','456']
JSON_ARRAY_APPEND() ; 函数
SET @Value = '["123"]'; SET @Value = JSON_ARRAY_APPEND(@Value, '$', '456'); SELECT @Value;
小提琴
JSON_ARRAY_APPEND() ; 函数
小提琴