SQL: Fix docs for STRING_FORMAT. (#7455)

This commit is contained in:
Gian Merlino 2019-04-11 21:57:28 -07:00 committed by Fangjin Yang
parent 7382dac44e
commit 2470b3279f
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ String functions accept strings, and return a type appropriate to the function.
|`x \|\| y`|Concat strings x and y.| |`x \|\| y`|Concat strings x and y.|
|`CONCAT(expr, expr...)`|Concats a list of expressions.| |`CONCAT(expr, expr...)`|Concats a list of expressions.|
|`TEXTCAT(expr, expr)`|Two argument version of CONCAT.| |`TEXTCAT(expr, expr)`|Two argument version of CONCAT.|
|`FORMAT(pattern[, args...])`|Returns a string formatted in the manner of Java's [String.format](https://docs.oracle.com/javase/8/docs/api/java/lang/String.html#format-java.lang.String-java.lang.Object...-).| |`STRING_FORMAT(pattern[, args...])`|Returns a string formatted in the manner of Java's [String.format](https://docs.oracle.com/javase/8/docs/api/java/lang/String.html#format-java.lang.String-java.lang.Object...-).|
|`LENGTH(expr)`|Length of expr in UTF-16 code units.| |`LENGTH(expr)`|Length of expr in UTF-16 code units.|
|`CHAR_LENGTH(expr)`|Synonym for `LENGTH`.| |`CHAR_LENGTH(expr)`|Synonym for `LENGTH`.|
|`CHARACTER_LENGTH(expr)`|Synonym for `LENGTH`.| |`CHARACTER_LENGTH(expr)`|Synonym for `LENGTH`.|