PostgreSQL/String Functions/initcap — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 10:13, 26 мая 2010

initcap(s): Returns the character string s, with each word"s first letter capitalized

postgres=#
postgres=# -- initcap(s): Returns the character string s, with each word"s first letter capitalized
postgres=# SELECT initcap("a prospective book title");
         initcap
--------------------------
 A Prospective Book Title
(1 row)
postgres=#
postgres=#