标签: sql string postgresql insert string-formatting
我正在将一个表中的字符串值插入到另一个表中,其中字符串值全部为大写。
如何在INSERT上更改字符串的大小写,以便只将字符串中每个单词的第一个字母大写?
示例:'TESTING ABC'将作为'Testing Abc'
答案 0 :(得分:1)
initcap函数应该可以解决问题:
initcap
INSERT INTO some_table (some_column) SELECT INITCAP(some_other_column) FROM some_other_table