[typo](doc)Add cancel create materialized view grammar #18084

This commit is contained in:
caoliang-web
2023-03-26 11:39:25 +08:00
committed by GitHub
parent 0347ae4dbd
commit 5df011cd43
2 changed files with 13 additions and 0 deletions

View File

@ -161,6 +161,13 @@ Users can view the created materialized views by using commands
You can view the specific syntax[SHOW CREATE MATERIALIZED VIEW](../sql-manual/sql-reference/Show-Statements/SHOW-CREATE-MATERIALIZED-VIEW.md)
### Cancel Create materialized view
```text
CANCEL ALTER MATERIALIZED VIEW FROM db_name.table_name
```
## Best Practice 1
The use of materialized views is generally divided into the following steps:

View File

@ -159,6 +159,12 @@ MySQL [test]> desc mv_test all;
具体的语法可查看[SHOW CREATE MATERIALIZED VIEW](../sql-manual/sql-reference/Show-Statements/SHOW-CREATE-MATERIALIZED-VIEW.md)
### 取消创建物化试图
```text
CANCEL ALTER MATERIALIZED VIEW FROM db_name.table_name
```
## 最佳实践1
使用物化视图一般分为以下几个步骤: