Heim > Fragen und Antworten > Hauptteil
So fügen Sie neue Elemente zur JSON-Variablen in MySQL hinzu
Davon: Wert = ['123'] Mach das: Wert = ['123','456']
P粉4640884372024-04-05 15:29:44
SET @Value = '["123"]'; SET @Value = JSON_ARRAY_APPEND(@Value, '$', '456'); SELECT @Value;