We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TRUNCATE MODEL
1 parent 1ec3e24 commit 48c9e37Copy full SHA for 48c9e37
docs/blueql/2.ddl.md
@@ -271,3 +271,22 @@ DROP MODEL [IF EXISTS] [ALLOW NOT EMPTY] <space_name>.<model_name>
271
DROP MODEL myspace.mymodel
272
DROP ALLOW NOT EMPTY myspace.mymodel
273
```
274
+
275
+### TRUNCATE MODEL
276
277
+```sql
278
+TRUNCATE MODEL <space_name>.<model_name>
279
+```
280
281
+- **Access control**: `root` only
282
+- **Operational notes**:
283
+ - Blocking
284
+ - Blocks all DML queries until completion of execution
285
+- **Returns**:
286
+ - empty or error
287
288
+#### Examples
289
290
291
+TRUNCATE MODEL myspace.mymodel
292
0 commit comments