Skip to content

Commit 19936e4

Browse files
docs: fixed some syntax errors in Chinese (#2147)
1 parent a6c867a commit 19936e4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/zh/reference/sql/dql/NO_TABLE_SELECT_CLAUSE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ SELECT const_expr [, const_expr ...];
2323
## 2. SELECT语句元素
2424

2525
| SELECT语句元素 | 状态 | 说明 |
26-
| :------------- | ------------------- | :----------------------------------------------------------- |
27-
| 无标SELECT语句 | OnlineServing不支持 | 无表Select语句计算常量表达式操作列表,表达式计算不需要依赖表和列 |
26+
|:-----------| ------------------- | :----------------------------------------------------------- |
27+
| 无表SELECT语句 | OnlineServing不支持 | 无表Select语句计算常量表达式操作列表,表达式计算不需要依赖表和列 |
2828

2929
#### Examples
3030

3131
```sql
3232
-- desc: SELECT 常量字面量
3333
SELECT 1, 1L, 1.0f, 2.0, 'Hello';
3434
-- desc: SELECT 常量表达式
35-
SELECT 1+1 1L + 1L, 1.0f - 1.0f, 2.0*2.0, 'Hello' LIKE 'He%';
35+
SELECT 1+1, 1L + 1L, 1.0f - 1.0f, 2.0*2.0, 'Hello' LIKE 'He%';
3636
-- desc: SELECT 函数表达式
3737
SELECT substr("hello world", 3, 6);
38-
```
38+
```

0 commit comments

Comments
 (0)