INSERT格式化字符串大小写?

时间:2017-05-30 22:32:33

标签: sql string postgresql insert string-formatting

我正在将一个表中的字符串值插入到另一个表中,其中字符串值全部为大写。

如何在INSERT上更改字符串的大小写,以便只将字符串中每个单词的第一个字母大写?

示例:'TESTING ABC'将作为'Testing Abc'

插入

1 个答案:

答案 0 :(得分:1)

initcap函数应该可以解决问题:

INSERT INTO some_table (some_column)
SELECT INITCAP(some_other_column)
FROM   some_other_table