diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/curdate.md b/docs/en/sql-reference/sql-functions/date-time-functions/curdate.md index 0a3367b7d8..ae68675975 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/curdate.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/curdate.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'DATE CURDATE()' +`DATE CURDATE()` Get the current date and return it in Date type diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/date_format.md b/docs/en/sql-reference/sql-functions/date-time-functions/date_format.md index fcab2558f7..29a618d1fa 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/date_format.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/date_format.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR DATE' FORMAT (DATETIME DATE, VARCHAR Format)' +`VARCHAR DATE' FORMAT (DATETIME DATE, VARCHAR Format)` Convert the date type to a bit string according to the format type. diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/datediff.md b/docs/en/sql-reference/sql-functions/date-time-functions/datediff.md index 0522650bda..3908f90d20 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/datediff.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/datediff.md @@ -29,7 +29,7 @@ under the License. ## Description ### Syntax -'DATETIME DATEDIFF (DATETIME expr1,DATETIME expr2)' +`DATETIME DATEDIFF (DATETIME expr1,DATETIME expr2)` Expr1 - expr2 is calculated and the result is accurate to the sky. diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/dayname.md b/docs/en/sql-reference/sql-functions/date-time-functions/dayname.md index 0c5c4f87f2..780bd6af80 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/dayname.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/dayname.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR DAYNAME (DATE)' +`VARCHAR DAYNAME (DATE)` Date name corresponding to return date diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/dayofmonth.md b/docs/en/sql-reference/sql-functions/date-time-functions/dayofmonth.md index 4bc8bcd5ed..ce20de6c22 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/dayofmonth.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/dayofmonth.md @@ -29,7 +29,7 @@ under the License. ## Description ### Syntax -'INT DAYOFMONTH (DATETIME date)' +`INT DAYOFMONTH (DATETIME date)` Get the day information in the date, and return values range from 1 to 31. diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/dayofweek.md b/docs/en/sql-reference/sql-functions/date-time-functions/dayofweek.md index c124d9a210..9a0bfe73e1 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/dayofweek.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/dayofweek.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -INT DayOfWeek (DATETIME date) +`INT DayOfWeek (DATETIME date)` The DAYOFWEEK function returns the index value of the working day of the date, that is, 1 on Sunday, 2 on Monday, and 7 on Saturday. diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/dayofyear.md b/docs/en/sql-reference/sql-functions/date-time-functions/dayofyear.md index c169c1c4fd..96dc490b89 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/dayofyear.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/dayofyear.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INT DAYOFYEAR (DATETIME date)' +`INT DAYOFYEAR (DATETIME date)` The date of acquisition is the date of the corresponding year. diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/month.md b/docs/en/sql-reference/sql-functions/date-time-functions/month.md index 6cd3a9eeb6..c26f13d601 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/month.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/month.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -INT MONTH (DATETIME date) +`INT MONTH (DATETIME date)` Returns month information in the time type, ranging from 1,12 diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/monthname.md b/docs/en/sql-reference/sql-functions/date-time-functions/monthname.md index a8ce5fd4c9..277d0d804c 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/monthname.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/monthname.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR MONTHNAME (DATE)' +`VARCHAR MONTHNAME (DATE)` Month name corresponding to return date diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/now.md b/docs/en/sql-reference/sql-functions/date-time-functions/now.md index 8f3fb63e54..36f2f01037 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/now.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/now.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'DATETIME NOW ()' +`DATETIME NOW ()` Get the current time and return it in Datetime type diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/str_to_date.md b/docs/en/sql-reference/sql-functions/date-time-functions/str_to_date.md index af3fb235f0..a9a6fcfd3e 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/str_to_date.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/str_to_date.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'DATETIME STR TWO DATES (VARCHAR STR, VARCHAR format)' +`DATETIME STR TWO DATES (VARCHAR STR, VARCHAR format)` Convert STR to DATE type by format specified, if the conversion result does not return NULL diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/timediff.md b/docs/en/sql-reference/sql-functions/date-time-functions/timediff.md index 9b6e0bc44b..587464941e 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/timediff.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/timediff.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'TIME TIMEDIFF (DATETIME expr1, DATETIME expr2)' +`TIME TIMEDIFF (DATETIME expr1, DATETIME expr2)` TIMEDIFF returns the difference between two DATETIMEs diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/to_days.md b/docs/en/sql-reference/sql-functions/date-time-functions/to_days.md index 060168211f..67c777b2e0 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/to_days.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/to_days.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INT TO DAYS' +`INT TO DAYS` Days of returning date distance 0000-01-01 diff --git a/docs/en/sql-reference/sql-functions/date-time-functions/weekofyear.md b/docs/en/sql-reference/sql-functions/date-time-functions/weekofyear.md index 707de04159..6b9d033a8a 100644 --- a/docs/en/sql-reference/sql-functions/date-time-functions/weekofyear.md +++ b/docs/en/sql-reference/sql-functions/date-time-functions/weekofyear.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INT WEEKOFYEAR (DATETIME DATE)' +`INT WEEKOFYEAR (DATETIME DATE)` diff --git a/docs/en/sql-reference/sql-functions/spatial-functions/st_astext.md b/docs/en/sql-reference/sql-functions/spatial-functions/st_astext.md index f8aa537f1f..15ddf61f07 100644 --- a/docs/en/sql-reference/sql-functions/spatial-functions/st_astext.md +++ b/docs/en/sql-reference/sql-functions/spatial-functions/st_astext.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR ST_AsText (GEOMETRY geo)' +`VARCHAR ST_AsText (GEOMETRY geo)` Converting a geometric figure into a WKT (Well Known Text) representation diff --git a/docs/en/sql-reference/sql-functions/spatial-functions/st_geometryfromtext.md b/docs/en/sql-reference/sql-functions/spatial-functions/st_geometryfromtext.md index 2de3ea4c0b..49c67ab70d 100644 --- a/docs/en/sql-reference/sql-functions/spatial-functions/st_geometryfromtext.md +++ b/docs/en/sql-reference/sql-functions/spatial-functions/st_geometryfromtext.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'GEOMETRY ST_GeometryFromText (VARCHAR wkt)' +`GEOMETRY ST_GeometryFromText (VARCHAR wkt)` Converting a WKT (Well Known Text) into a corresponding memory geometry diff --git a/docs/en/sql-reference/sql-functions/spatial-functions/st_linefromtext.md b/docs/en/sql-reference/sql-functions/spatial-functions/st_linefromtext.md index e3f9f85667..1d232ccbfc 100644 --- a/docs/en/sql-reference/sql-functions/spatial-functions/st_linefromtext.md +++ b/docs/en/sql-reference/sql-functions/spatial-functions/st_linefromtext.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'GEOMETRY ST LineFromText (VARCHAR wkt)' +`GEOMETRY ST LineFromText (VARCHAR wkt)` Converting a WKT (Well Known Text) into a Line-style memory representation diff --git a/docs/en/sql-reference/sql-functions/spatial-functions/st_polygon.md b/docs/en/sql-reference/sql-functions/spatial-functions/st_polygon.md index 31867e9d5e..456b29e5c6 100644 --- a/docs/en/sql-reference/sql-functions/spatial-functions/st_polygon.md +++ b/docs/en/sql-reference/sql-functions/spatial-functions/st_polygon.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'GEOMETRY ST_Polygon (VARCHAR wkt)' +`GEOMETRY ST_Polygon (VARCHAR wkt)` Converting a WKT (Well Known Text) into a corresponding polygon memory form diff --git a/docs/en/sql-reference/sql-functions/string-functions/bit_length.md b/docs/en/sql-reference/sql-functions/string-functions/bit_length.md index 134e0e24d8..e4a9ca29bf 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/bit_length.md +++ b/docs/en/sql-reference/sql-functions/string-functions/bit_length.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INT bit_length (VARCHAR str)' +`INT bit_length (VARCHAR str)` Return length of argument in bits。 diff --git a/docs/en/sql-reference/sql-functions/string-functions/concat_ws.md b/docs/en/sql-reference/sql-functions/string-functions/concat_ws.md index 6cf90f21d4..5b26138bb8 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/concat_ws.md +++ b/docs/en/sql-reference/sql-functions/string-functions/concat_ws.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR concat ws (VARCHAR sep., VARCHAR str,...)' +`VARCHAR concat ws (VARCHAR sep., VARCHAR str,...)` Using the first parameter SEP as a connector, the second parameter and all subsequent parameters are spliced into a string. diff --git a/docs/en/sql-reference/sql-functions/string-functions/get_json_double.md b/docs/en/sql-reference/sql-functions/string-functions/get_json_double.md index 65fc9760c1..f57653c5cf 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/get_json_double.md +++ b/docs/en/sql-reference/sql-functions/string-functions/get_json_double.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -`DOUBLE get_json_double(VARCHAR json_str, VARCHAR json_path) +`DOUBLE get_json_double(VARCHAR json_str, VARCHAR json_path)` Parse and get the floating-point content of the specified path in the JSON string. diff --git a/docs/en/sql-reference/sql-functions/string-functions/get_json_int.md b/docs/en/sql-reference/sql-functions/string-functions/get_json_int.md index 43aa3a511d..3367be5d14 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/get_json_int.md +++ b/docs/en/sql-reference/sql-functions/string-functions/get_json_int.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -`INT get_json_int(VARCHAR json_str, VARCHAR json_path) +`INT get_json_int(VARCHAR json_str, VARCHAR json_path)` Parse and retrieve the integer content of the specified path in the JSON string. diff --git a/docs/en/sql-reference/sql-functions/string-functions/get_json_string.md b/docs/en/sql-reference/sql-functions/string-functions/get_json_string.md index eff9a05e67..9ce4c9480a 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/get_json_string.md +++ b/docs/en/sql-reference/sql-functions/string-functions/get_json_string.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -'VARCHAR get_json_string (VARCHAR json str, VARCHAR json path) +`VARCHAR get_json_string (VARCHAR json str, VARCHAR json path)` Parse and retrieve the string content of the specified path in the JSON string. diff --git a/docs/en/sql-reference/sql-functions/string-functions/instr.md b/docs/en/sql-reference/sql-functions/string-functions/instr.md index 4cad9cd926..ef7b0dd77d 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/instr.md +++ b/docs/en/sql-reference/sql-functions/string-functions/instr.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INSTR (VARCHAR STR, VARCHAR substrate)' +`INSTR (VARCHAR STR, VARCHAR substrate)` Returns the location where substr first appeared in str (counting from 1). If substr does not appear in str, return 0. diff --git a/docs/en/sql-reference/sql-functions/string-functions/left.md b/docs/en/sql-reference/sql-functions/string-functions/left.md index a356281656..4e807cb64c 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/left.md +++ b/docs/en/sql-reference/sql-functions/string-functions/left.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR left (VARCHAR str)' +`VARCHAR left (VARCHAR str)` It returns the left part of a string of specified length, length is char length not the byte size. diff --git a/docs/en/sql-reference/sql-functions/string-functions/length.md b/docs/en/sql-reference/sql-functions/string-functions/length.md index 9c5a6536fa..85f0a61b94 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/length.md +++ b/docs/en/sql-reference/sql-functions/string-functions/length.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INT length (VARCHAR str)' +`INT length (VARCHAR str)` Returns the length of the string in byte size. diff --git a/docs/en/sql-reference/sql-functions/string-functions/locate.md b/docs/en/sql-reference/sql-functions/string-functions/locate.md index 5671586f2c..92a169a272 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/locate.md +++ b/docs/en/sql-reference/sql-functions/string-functions/locate.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INT LOCATION (VARCHAR substrate, VARCHAR str [, INT pos]]' +`INT LOCATION (VARCHAR substrate, VARCHAR str [, INT pos]]` Returns where substr appears in str (counting from 1). If the third parameter POS is specified, the position where substr appears is found from the string where STR starts with POS subscript. If not found, return 0 diff --git a/docs/en/sql-reference/sql-functions/string-functions/lower.md b/docs/en/sql-reference/sql-functions/string-functions/lower.md index 9511257c05..db094008b2 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/lower.md +++ b/docs/en/sql-reference/sql-functions/string-functions/lower.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'INT lower (VARCHAR str)' +`INT lower (VARCHAR str)` Convert all strings in parameters to lowercase diff --git a/docs/en/sql-reference/sql-functions/string-functions/lpad.md b/docs/en/sql-reference/sql-functions/string-functions/lpad.md index 5ed7384413..c2a8b095de 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/lpad.md +++ b/docs/en/sql-reference/sql-functions/string-functions/lpad.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR lpad (VARCHAR str, INT len, VARCHAR pad)' +`VARCHAR lpad (VARCHAR str, INT len, VARCHAR pad)` Returns a string of length len in str, starting with the initials. If len is longer than str, pad characters are added to STR until the length of the string reaches len. If len is less than str's length, the function is equivalent to truncating STR strings and returning only strings of len's length. The len is character length not the bye size. diff --git a/docs/en/sql-reference/sql-functions/string-functions/ltrim.md b/docs/en/sql-reference/sql-functions/string-functions/ltrim.md index 27d24f5e7d..5e4f7bf2df 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/ltrim.md +++ b/docs/en/sql-reference/sql-functions/string-functions/ltrim.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR ltrim (VARCHAR str)' +`VARCHAR ltrim (VARCHAR str)` Remove the space that appears continuously from the beginning of the parameter str diff --git a/docs/en/sql-reference/sql-functions/string-functions/money_format.md b/docs/en/sql-reference/sql-functions/string-functions/money_format.md index 0fe583ae3d..541e8fbe20 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/money_format.md +++ b/docs/en/sql-reference/sql-functions/string-functions/money_format.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -VARCHAR money format (Number) +`VARCHAR money format (Number)` The number is output in currency format, the integer part is separated by commas every three bits, and the decimal part is reserved for two bits. diff --git a/docs/en/sql-reference/sql-functions/string-functions/repeat.md b/docs/en/sql-reference/sql-functions/string-functions/repeat.md index 62b4d74f22..142747cbe1 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/repeat.md +++ b/docs/en/sql-reference/sql-functions/string-functions/repeat.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR repeat (VARCHAR str, INT count) +`VARCHAR repeat (VARCHAR str, INT count)` Repeat the str of the string count times, return empty string when count is less than 1, return NULL when str, count is any NULL diff --git a/docs/en/sql-reference/sql-functions/string-functions/right.md b/docs/en/sql-reference/sql-functions/string-functions/right.md index 75058212db..04b6898788 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/right.md +++ b/docs/en/sql-reference/sql-functions/string-functions/right.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR RIGHT (VARCHAR STR)' +`VARCHAR RIGHT (VARCHAR STR)` It returns the right part of a string of specified length, length is char length not the byte size. diff --git a/docs/en/sql-reference/sql-functions/string-functions/rpad.md b/docs/en/sql-reference/sql-functions/string-functions/rpad.md index 2f3f578771..3752b631a8 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/rpad.md +++ b/docs/en/sql-reference/sql-functions/string-functions/rpad.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR rpad (VARCHAR str, INT len, VARCHAR pad)' +`VARCHAR rpad (VARCHAR str, INT len, VARCHAR pad)` Returns a string of length len in str, starting with the initials. If len is longer than str, pad characters are added to the right of STR until the length of the string reaches len. If len is less than str's length, the function is equivalent to truncating STR strings and returning only strings of len's length. The len is character length not the bye size. diff --git a/docs/en/sql-reference/sql-functions/string-functions/split_part.md b/docs/en/sql-reference/sql-functions/string-functions/split_part.md index d19eac75c6..6df62b5068 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/split_part.md +++ b/docs/en/sql-reference/sql-functions/string-functions/split_part.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR split party (VARCHAR content, VARCHAR delimiter, INT field)' +`VARCHAR split party (VARCHAR content, VARCHAR delimiter, INT field)` Returns the specified partition (counting from the beginning) by splitting the string according to the partitioner. diff --git a/docs/en/sql-reference/sql-functions/string-functions/strleft.md b/docs/en/sql-reference/sql-functions/string-functions/strleft.md index 8714cc0eaf..5c158d8411 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/strleft.md +++ b/docs/en/sql-reference/sql-functions/string-functions/strleft.md @@ -28,7 +28,7 @@ under the License. ## Description ### Syntax -'VARCHAR STRAIGHT (VARCHAR STR)' +`VARCHAR STRAIGHT (VARCHAR STR)` It returns the left part of a string of specified length, length is char length not the byte size. diff --git a/docs/en/sql-reference/sql-functions/string-functions/strright.md b/docs/en/sql-reference/sql-functions/string-functions/strright.md index 903b59972a..a71fb88f35 100644 --- a/docs/en/sql-reference/sql-functions/string-functions/strright.md +++ b/docs/en/sql-reference/sql-functions/string-functions/strright.md @@ -29,7 +29,7 @@ under the License. ## Description ### Syntax -'VARCHAR strright (VARCHAR str)' +`VARCHAR strright (VARCHAR str)` It returns the right part of a string of specified length, length is char length not the byte size. diff --git a/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_double.md b/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_double.md index 6ea26b439e..782bdc8eba 100644 --- a/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_double.md +++ b/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_double.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -`DOUBLE get_json_double(VARCHAR json_str, VARCHAR json_path) +`DOUBLE get_json_double(VARCHAR json_str, VARCHAR json_path)` 解析并获取 json 字符串内指定路径的浮点型内容。 diff --git a/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_int.md b/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_int.md index 7fed085485..7b1ac67a44 100644 --- a/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_int.md +++ b/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_int.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -`INT get_json_int(VARCHAR json_str, VARCHAR json_path) +`INT get_json_int(VARCHAR json_str, VARCHAR json_path)` 解析并获取 json 字符串内指定路径的整型内容。 diff --git a/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_string.md b/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_string.md index 4a6a0a0009..9311a77ea7 100644 --- a/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_string.md +++ b/docs/zh-CN/sql-reference/sql-functions/string-functions/get_json_string.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -`VARCHAR get_json_string(VARCHAR json_str, VARCHAR json_path) +`VARCHAR get_json_string(VARCHAR json_str, VARCHAR json_path)` 解析并获取 json 字符串内指定路径的字符串内容。 diff --git a/docs/zh-CN/sql-reference/sql-functions/string-functions/money_format.md b/docs/zh-CN/sql-reference/sql-functions/string-functions/money_format.md index 96cc1c580c..cf5ab699de 100644 --- a/docs/zh-CN/sql-reference/sql-functions/string-functions/money_format.md +++ b/docs/zh-CN/sql-reference/sql-functions/string-functions/money_format.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -VARCHAR money_format(Number) +`VARCHAR money_format(Number)` 将数字按照货币格式输出,整数部分每隔3位用逗号分隔,小数部分保留2位 diff --git a/docs/zh-CN/sql-reference/sql-functions/string-functions/regexp/regexp_replace.md b/docs/zh-CN/sql-reference/sql-functions/string-functions/regexp/regexp_replace.md index bde41f706d..9540f09f1c 100644 --- a/docs/zh-CN/sql-reference/sql-functions/string-functions/regexp/regexp_replace.md +++ b/docs/zh-CN/sql-reference/sql-functions/string-functions/regexp/regexp_replace.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -`VARCHAR regexp_replace(VARCHAR str, VARCHAR pattern, VARCHAR repl) +`VARCHAR regexp_replace(VARCHAR str, VARCHAR pattern, VARCHAR repl)` 对字符串 str 进行正则匹配, 将命中 pattern 的部分使用 repl 来进行替换 diff --git a/docs/zh-CN/sql-reference/sql-functions/string-functions/repeat.md b/docs/zh-CN/sql-reference/sql-functions/string-functions/repeat.md index 545628e8b4..58ca8a8690 100644 --- a/docs/zh-CN/sql-reference/sql-functions/string-functions/repeat.md +++ b/docs/zh-CN/sql-reference/sql-functions/string-functions/repeat.md @@ -28,7 +28,7 @@ under the License. ## description ### Syntax -`VARCHAR repeat(VARCHAR str, INT count) +`VARCHAR repeat(VARCHAR str, INT count)` 将字符串 str 重复 count 次输出,count 小于1时返回空串,str,count 任一为NULL时,返回 NULL