E2E Forum › Modeling & Development › array tips and tricks › Reply To: array tips and tricks
set array2 = select each from array1 where true;
This copies array1 to array2 and replaces the content of array2 (instead of appending). To really append use concatArrays() as Jens suggested.