ST_CreateChunkTable
Updated at:
Copy as MD
Creates a chunk table in the current database.
Syntax
boolean ST_CreateChunkTable(cstring tableName)Parameters
| Parameter | Type | Description |
|---|---|---|
tableName | cstring | The name of the chunk table to create. The name must meet the following requirements: start with a letter and end with a letter or digit; contain only lowercase letters, digits, and underscores (_); be 2 to 64 characters in length; be unique in the current database. |
Return value
Returns true if the chunk table is created successfully.
Examples
SELECT ST_CreateChunkTable('t_chunk');Output:
tIs this page helpful?