diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 6bb793a9c85..9423e524fe9 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -929,6 +929,20 @@ A + + convert(string text, + [src_encoding name,] + dest_encoding name) + text + Converts string using dest_encoding. + The original encoding is specified by src_encoding. + If src_encoding is omitted, database encoding + is assumed. + + convert('text_in_unicode','UNICODE','LATIN1') + text_in_unicode (represented in ISO-8859-1) + + initcap(text) text