Skip to content
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f40c5c1
Update tidb-specific-system-variables.md
ireneontheway Jul 9, 2020
ffac826
Update tidb-specific-system-variables.md
ireneontheway Jul 10, 2020
165ea3d
Update tidb-specific-system-variables.md
ireneontheway Jul 10, 2020
945074c
Update tidb-specific-system-variables.md
ireneontheway Jul 10, 2020
d6eb450
Update tidb-specific-system-variables.md
ireneontheway Jul 10, 2020
b79d661
fix indent
Jul 10, 2020
c7e6542
Merge remote-tracking branch 'upstream/master'
ireneontheway Jul 10, 2020
a16adb3
Merge branch 'master' of https://github.com/ireneontheway/docs
ireneontheway Jul 10, 2020
9eb5992
Apply suggestions from code review
ireneontheway Jul 10, 2020
0ace8d8
Update tidb-specific-system-variables.md
ireneontheway Jul 10, 2020
d1c7d99
add a space
Jul 10, 2020
6c68818
Update comment-syntax.md
ireneontheway Jul 10, 2020
2ed9a91
Merge remote-tracking branch 'upstream/master'
ireneontheway Jul 10, 2020
fec657e
Merge branch 'master' of https://github.com/ireneontheway/docs
ireneontheway Jul 10, 2020
22612e1
Revert "Update comment-syntax.md"
ireneontheway Jul 10, 2020
1bb1b63
Temporarily add back SHARD_ROW_ID_BITS
Jul 10, 2020
781a455
Merge branch 'master' into master
Jul 10, 2020
7cabbb3
Merge remote-tracking branch 'upstream/master'
ireneontheway Jul 10, 2020
f451f61
comment-syntax: add TiDB-specific comment syntax
ireneontheway Jul 10, 2020
3128e88
Apply suggestions from code review
ireneontheway Jul 13, 2020
cd795c2
Update comment-syntax.md
ireneontheway Jul 13, 2020
9890654
Update comment-syntax.md
ireneontheway Jul 13, 2020
283705c
Update comment-syntax.md
ireneontheway Jul 13, 2020
f0b8d50
Update comment-syntax.md
ireneontheway Jul 13, 2020
c0916e4
Apply suggestions from code review
ireneontheway Jul 13, 2020
31089c5
Merge branch 'master' into master
ti-srebot Jul 13, 2020
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
182 changes: 117 additions & 65 deletions comment-syntax.md
Original file line number Diff line number Diff line change
@@ -1,76 +1,119 @@
---
title: Comment Syntax
summary: Learn about the three comment styles in TiDB.
category: reference
summary: This document introduces the comment syntax supported by TiDB.
aliases: ['/docs/dev/comment-syntax/','/docs/dev/reference/sql/language-structure/comment-syntax/']
---

# Comment Syntax

TiDB supports three comment styles:
This document describes the comment syntax supported by TiDB.

- Use `#` to comment a line.
- Use `--` to comment a line, and this style requires at least one whitespace after `--`.
- Use `/* */` to comment a block or multiple lines.
TiDB supports three comment styles:

Example:
- Use `#` to comment a line:

{{< copyable "sql" >}}

```sql
SELECT 1+1; # comments
```

```
+------+
| 1+1 |
+------+
| 2 |
+------+
1 row in set (0.00 sec)
```

- Use `--` to comment a line:

{{< copyable "sql" >}}

```sql
SELECT 1+1; -- comments
```

```
+------+
| 1+1 |
+------+
| 2 |
+------+
1 row in set (0.00 sec)
```

And this style requires at least one whitespace after `--`:

{{< copyable "sql" >}}

```sql
SELECT 1+1--1;
```

```
+--------+
| 1+1--1 |
+--------+
| 3 |
+--------+
1 row in set (0.01 sec)
```

- Use `/* */` to comment a block or multiple lines:

{{< copyable "sql" >}}

```sql
SELECT 1 /* this is an in-line comment */ + 1;
```

```
+--------+
| 1 + 1 |
+--------+
| 2 |
+--------+
1 row in set (0.01 sec)
```

{{< copyable "sql" >}}

```sql
SELECT 1+
-> /*
/*> this is a
/*> multiple-line comment
/*> */
-> 1;
```

```
+-------+
| 1+
1 |
+-------+
| 2 |
+-------+
1 row in set (0.00 sec)
```

## MySQL-compatible comment syntax

The same as MySQL, TiDB supports a variant of C comment style:

```sql
mysql> SELECT 1+1; # This comment continues to the end of line
+------+
| 1+1 |
+------+
| 2 |
+------+
1 row in set (0.00 sec)

mysql> SELECT 1+1; -- This comment continues to the end of line
+------+
| 1+1 |
+------+
| 2 |
+------+
1 row in set (0.00 sec)

mysql> SELECT 1 /* this is an in-line comment */ + 1;
+--------+
| 1 + 1 |
+--------+
| 2 |
+--------+
1 row in set (0.01 sec)

mysql> SELECT 1+
-> /*
/*> this is a
/*> multiple-line comment
/*> */
-> 1;
+-------+
| 1+

1 |
+-------+
| 2 |
+-------+
1 row in set (0.00 sec)

mysql> SELECT 1+1--1;
+--------+
| 1+1--1 |
+--------+
| 3 |
+--------+
1 row in set (0.01 sec)
```
/*! Specific code */
```

Similar to MySQL, TiDB supports a variant of C comment style:
or

```
/*! Specific code */
/*!50110 Specific code */
```

In this comment style, TiDB runs the statements in the comment. The syntax is used to make these SQL statements ignored in other databases and run only in TiDB.
In this style, TiDB runs the statements in the comment.

For example:

Expand All @@ -84,20 +127,29 @@ In TiDB, you can also use another version:
SELECT STRAIGHT_JOIN col1 FROM table1,table2 WHERE ...
```

If the server version number is specified in the comment, for example, `/*!50110 KEY_BLOCK_SIZE=1024 */`, in MySQL it means that the contents in this comment is processed only when the MySQL version is or higher than 5.1.10. But in TiDB, the MySQL version number does not work and all contents in the comment are processed. TiDB has its own comment syntax for the version number. The format of this syntax is `/*T!30100 XXX */`.
If the server version number is specified in the comment, for example, `/*!50110 KEY_BLOCK_SIZE=1024 */`, in MySQL it means that the contents in this comment are processed only when the MySQL version is or higher than 5.1.10. But in TiDB, the MySQL version number does not work and all contents in the comment are processed.

Another type of comment is specially treated as the Hint optimizer:
## TiDB specific comment syntax

```
SELECT /*+ hint */ FROM ...;
```
TiDB has its own comment syntax (that is, TiDB specific comment syntax), which can be divided into the following two types:

Since Hint is involved in comments like `/*+ xxx */`, the MySQL client clears the comment by default in versions earlier than 5.7.7. To use Hint in those earlier versions, add the `--comments` option when you start the client. For example:
* `/*T! Specific code */`: This syntax can only be parsed and executed by TiDB, and be ignored in other databases.
* `/*T![feature_id] Specific code */`: This syntax is used to ensure compatibility between different versions of TiDB. TiDB can parse the SQL fragment in this comment only if it implements the corresponding feature of `feature_id` in the current version. For example, as the `AUTO_RANDOM` feature is introduced in v3.1.1, this version of TiDB can parse `/*T![auto_rand] auto_random */` into `auto_random`. Because the `AUTO_RANDOM` feature is not implemented in v3.0.0, the SQL statement fragment above is ignored.

```
mysql -h 127.0.0.1 -P 4000 -uroot --comments
## Optimizer comment syntax

Another type of comment is specially treated as an optimizer hint:

{{< copyable "sql" >}}

```sql
SELECT /*+ hint */ FROM ...;
```

For details about the optimizer hints that TiDB supports, see [Optimizer hints](/optimizer-hints.md).

> **Note**
>
> In MySQL client before 5.7.7, TiDB specific comment syntax and optimizer comment syntax are treated as comments and cleared by default. To use the two syntaxes in the old client, add the `--comments` option when you start the client. For example, `mysql -h 127.0.0.1 -P 4000 -uroot --comments`.

For more information, see [Comment Syntax](https://dev.mysql.com/doc/refman/5.7/en/comments.html).