I have a table like this:
+-----+------------+-------+--------+-----------+
| ID | val1 | val2 | val3 | array_3 |
+-----+------------+-------+--------+-----------+
| 100 | 110 | 25 | 53 |{110,25,53}|
| 101 | 56 | 75 | 59 |{56,75,59} |
| 102 | 65 | 93 | 82 |{65,93,82} |
| 103 | 75 | 70 | 80 |{75,70,80} |
+-----+------------+-------+--------+-----------+
imagine I have the values for ID, val1, val2 and val3 columns and I want the resulting array in the array_3 table which is an array type and its size is 1*3. How can I do that?