Skip to content

Commit

Permalink
user-defined-variables: Update SQL keywords to capital (pingcap#4647)
Browse files Browse the repository at this point in the history
  • Loading branch information
wanjuntham authored Oct 10, 2020
1 parent 325e5be commit e557bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user-defined-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ SET @c = @a + @b;
{{< copyable "sql" >}}

```sql
set @c = b'1000001' + b'1000001';
SET @c = b'1000001' + b'1000001';
```

## 读取用户自定义变量
Expand Down Expand Up @@ -153,7 +153,7 @@ EXECUTE stmt USING @a, @b;
{{< copyable "sql" >}}

```sql
SELECT * from t;
SELECT * FROM t;
```

```
Expand Down

0 comments on commit e557bd0

Please sign in to comment.