Skip to content

Commit

Permalink
Create 运算符.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ronachao authored Jun 28, 2018
1 parent b14b9bb commit 20c39f8
Showing 1 changed file with 6 additions and 0 deletions.
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)或符号(例如 =、<)表示运算符或内置函数。

0 comments on commit 20c39f8

Please sign in to comment.