我有一张雪花表,看起来像这样:
--------------------
| fieldname |
--------------------
|thisIsTestOne |
|thisIsTestTwo |
|this_test |
--------------------
我需要将列中的 PascalCase 值转换为 snake_case。注意:如果它们是 PascalCase,我只想将它们转换为 snake_case。输出应该是这样的;
-------------------- ---------------------
| fieldname | newfieldname |
-------------------- ---------------------
|thisIsTestOne |this_is_test_one |
|thisIsTestTwo |this_is_test_two |
|this_test |this_test |
-------------------- ---------------------