docs/ correct the "drop database" to "drop stream"

This commit is contained in:
Yu Chen 2024-11-22 10:16:13 +08:00 committed by GitHub
parent 09cdc37945
commit 53fab7ef72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ flush database stream_dest_db; ---- 流计算写入数据的超级表所在的
```sql
create stream streams1 into test1.streamst as select _wstart, count(a) c1 from test.st interval(1s) ;
drop database streams1;
drop stream streams1;
flush database test;
flush database test1;
```