How do I SELECT only the last key from an array column?
SELECT * FROM table;
+----+---------------+
| id | col_array |
+----+---------------+
| 1 | {"a"} |
+----+---------------+
| 2 | {"a","b","c"} |
+----+---------------+
| 3 | {"b","d","f"} |
+----+---------------+
The desired result for col_array would be: a, c, f.