I want to use a static-sized table like this:
+------+----------+-----------+
| id | col1 | col2 |
+------+----------+-----------+
| 1 | a | x |
+------+----------+-----------+
| 2 | b | y |
+------+----------+-----------+
| 3 | c | z |
+------+----------+-----------+
Is there a way to shift the column data upwards when I update [3, col1] for example? Table should look like this...
+------+----------+-----------+
| id | col1 | col2 |
+------+----------+-----------+
| 1 | b | x |
+------+----------+-----------+
| 2 | c | y |
+------+----------+-----------+
| 3 | d* | z |
+------+----------+-----------+
*New value in [row3, col1] and column data has been shifted up; thanks in advance.