Do you know if it is possible to transform a field content in CamelCase to snake_case ?
Like this:
$ SELECT my_other_field FROM my_table;
+-----------------+
| my_other_field |
+-----------------+
| ThisIsAnExample |
+-----------------+
$ UPDATE my_table SET my_field = ......(my_other_field);
$ SELECT my_field FROM my_table;
+--------------------+
| my_field |
+--------------------+
| this_is_an_example |
+--------------------+