diff --git a/docs/sql_reference/functions-reference/string/substring.md b/docs/sql_reference/functions-reference/string/substring.md index 7bd96e6e..2b462494 100644 --- a/docs/sql_reference/functions-reference/string/substring.md +++ b/docs/sql_reference/functions-reference/string/substring.md @@ -23,8 +23,8 @@ SUBSTRING( [FROM ] [FOR ]) | Parameter | Description |Supported input types | | :--------- | :----------------------------------- | :---------------------| | `` | The input string. | `TEXT` | -| `` | Optional. The starting position for the substring. 1 is the first character. | `INTEGER` | -| `` | Optional. The number of characters to be returned by the `SUBSTRING` function. Must be positive or 0. If not specified, `count` by default returns all of the string not specified by the `start` parameter. | `INTEGER` | +| `` | Optional. The starting position for the substring. 1 is the first character. | `BIGINT` | +| `` | Optional. The number of characters to be returned by the `SUBSTRING` function. Must be positive or 0. If not specified, `count` by default returns all of the string not specified by the `start` parameter. | `BIGINT` | At least one of the optional arguments `` and `` must be given.