Renames an existing table.
Available in a network database and requires the star$define role.
Parameters:
| Name | Optional | Type | Description |
| old$ | Mandatory | Text | Existing table name |
| new$ | Mandatory | Text | New table name |
Examples:
SELECT rename_table('old','new'); -- renames table 'old' to 'new'
Tips:
- The star$tables view lists existing tables
Comments
Article is closed for comments.