diff --git a/functions-and-operators/bit-functions-and-operators.md b/functions-and-operators/bit-functions-and-operators.md index 7c16abf54de7..0b7c7e261adc 100644 --- a/functions-and-operators/bit-functions-and-operators.md +++ b/functions-and-operators/bit-functions-and-operators.md @@ -13,9 +13,9 @@ TiDB 支持使用 MySQL 8.0 中提供的所有[位函数和操作符](https://de | 函数和操作符名 | 功能描述 | | -------------- | ------------------------------------- | | [`BIT_COUNT()`](#bit_count) | 返回参数二进制表示中为 1 的个数 | -| [`&`](#按位与) | 按位与 | -| [`~`](#按位取反) | 按位取反 | -| [`\|`](#按位或) | 按位或 | +| [&](#按位与) | 按位与 | +| [~](#按位取反) | 按位取反 | +| [\|](#按位或) | 按位或 | | [`^`](#按位异或) | 按位异或 | | [`<<`](#左移) | 左移 | | [`>>`](#右移) | 右移 |