Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
### Description
#### Syntax

`VARCHAR left (VARCHAR str)`
`VARCHAR left (VARCHAR str, INT len)`


It returns the left part of a string of specified length, length is char length not the byte size.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
### Description
#### Syntax

`VARCHAR RIGHT (VARCHAR STR)`
`VARCHAR RIGHT (VARCHAR str, INT len)`


It returns the right part of a string of specified length, length is char length not the byte size.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
### Description
#### Syntax

`VARCHAR STRAIGHT (VARCHAR STR)`
`VARCHAR STRAIGHT (VARCHAR str, INT len)`


It returns the left part of a string of specified length, length is char length not the byte size.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ under the License.
### Description
#### Syntax

`VARCHAR strright (VARCHAR str)`
`VARCHAR strright (VARCHAR str, INT len)`


It returns the right part of a string of specified length, length is char length not the byte size.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
### description
#### Syntax

`VARCHAR left(VARCHAR str)`
`VARCHAR left(VARCHAR str, INT len)`


它返回具有指定长度的字符串的左边部分, 长度的单位为utf8字符
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
### description
#### Syntax

`VARCHAR right(VARCHAR str)`
`VARCHAR right(VARCHAR str, INT len)`


它返回具有指定长度的字符串的右边部分, 长度的单位为utf8字符
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
### description
#### Syntax

`VARCHAR strleft(VARCHAR str)`
`VARCHAR strleft(VARCHAR str, INT len)`


它返回具有指定长度的字符串的左边部分,长度的单位为utf8字符
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
### description
#### Syntax

`VARCHAR strright(VARCHAR str)`
`VARCHAR strright(VARCHAR str, INT len)`


它返回具有指定长度的字符串的右边部分, 长度的单位为utf8字符
Expand Down