forked from tencentyun/qcloud-documents
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
常用运算符的含义: | ||
- `{ }`表示可选且任选一项,例如 { BOTH | LEADING | TRAILING } 表示可以不填(使用默认行为),也可以使用 BOTH 或 LEADING 或 TRAILING 的任意一项。不同项的功能不同。 | ||
|
||
- `[ ]`表示可选项,而`*`表示重复 0 或多次,例如 `[, value]*`表示后续有 0 个或多个 “, value”,这种用法常用来表示不定数目的参数,例如 value, value, value … value。 | ||
|
||
- 小写字母构成的字符串表示某个变量,例如 value1、value、boolean、numeric 等,而大写字母(例如 IS NULL)或符号(例如 =、<)表示运算符或内置函数。 |