04-stable.md 5.7 KB
Newer Older
1
---
2 3
sidebar_label: Supertable
title: Supertable
4 5
---

6
## Create a Supertable
7

8 9 10 11 12 13 14 15 16
```sql
CREATE STABLE [IF NOT EXISTS] stb_name (create_definition [, create_definitionn] ...) TAGS (create_definition [, create_definition] ...) [table_options]
 
create_definition:
    col_name column_definition
 
column_definition:
    type_name [COMMENT 'string_value']
```
17

18 19 20 21 22 23 24 25 26
**More explanations**
- Each supertable can have a maximum of 4096 columns, including tags. The minimum number of columns is 3: a timestamp column used as the key, one tag column, and one data column.
- When you create a supertable, you can add comments to columns and tags.
- The TAGS keyword defines the tag columns for the supertable. The following restrictions apply to tag columns:
    - A tag column can use the TIMESTAMP data type, but the values in the column must be fixed numbers. Timestamps including formulae, such as "now + 10s", cannot be stored in a tag column.
    - The name of a tag column cannot be the same as the name of any other column.
    - The name of a tag column cannot be a reserved keyword.
    - Each supertable must contain between 1 and 128 tags. The total length of the TAGS keyword cannot exceed 16 KB.
- For more information about table parameters, see Create a Table.
27

28 29 30
## View a Supertable

### View All Supertables
31 32

```
33
SHOW STABLES [LIKE tb_name_wildcard];
34 35
```

36
The preceding SQL statement shows all supertables in the current TDengine database, including the name, creation time, number of columns, number of tags, and number of subtabels for each supertable.
37

38
### View the CREATE Statement for a Supertable
39 40

```
41
SHOW CREATE STABLE stb_name;
42 43
```

44
The preceding SQL statement can be used in migration scenarios. It returns the CREATE statement that was used to create the specified supertable. You can then use the returned statement to create an identical supertable on another TDengine database.
45

46
## View the Supertable Schema
47 48

```
49
DESCRIBE [db_name.]stb_name;
50 51
```

52
## Drop STable
53 54

```
55
DROP STABLE [IF EXISTS] [db_name.]stb_name
56 57
```

58
Note: Deleting a supertable will delete all subtables created from the supertable, including all data within those subtables.
59

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
## Modify a Supertable

```sql
ALTER STABLE [db_name.]tb_name alter_table_clause
 
alter_table_clause: {
    alter_table_options
  | ADD COLUMN col_name column_type
  | DROP COLUMN col_name
  | MODIFY COLUMN col_name column_type
  | ADD TAG tag_name tag_type
  | DROP TAG tag_name
  | MODIFY TAG tag_name tag_type
  | RENAME TAG old_tag_name new_tag_name
}
 
alter_table_options:
    alter_table_option ...
 
alter_table_option: {
    COMMENT 'string_value'
}
82 83 84

```

85 86 87 88 89 90 91 92 93 94 95
**More explanations**

Modifications to the table schema of a supertable take effect on all subtables within the supertable. You cannot modify the table schema of subtables individually. When you modify the tag schema of a supertable, the modifications automatically take effect on all of its subtables.

- ADD COLUMN: adds a column to the supertable.
- DROP COLUMN: deletes a column from the supertable.
- MODIFY COLUMN: changes the length of a BINARY or NCHAR column. Note that you can only specify a length greater than the current length.
- ADD TAG: adds a tag to the supertable.
- DROP TAG: deletes a tag from the supertable. When you delete a tag from a supertable, it is automatically deleted from all subtables within the supertable.
- MODIFY TAG: modifies the definition of a tag in the supertable. You can use this keyword to change the length of a BINARY or NCHAR tag column. Note that you can only specify a length greater than the current length.
- RENAME TAG: renames a specified tag in the supertable. When you rename a tag in a supertable, it is automatically renamed in all subtables within the supertable.
96

97
### Add a Column
98 99

```
100
ALTER STABLE stb_name ADD COLUMN col_name column_type;
101 102
```

103
### Delete a Column
104 105

```
106
ALTER STABLE stb_name DROP COLUMN col_name;
107 108
```

109
### Modify the Data Length
110 111

```
112
ALTER STABLE stb_name MODIFY COLUMN col_name data_type(length);
113 114
```

115
The preceding SQL statement changes the length of a BINARY or NCHAR data column. Note that you can only specify a length greater than the current length.
116 117 118 119

### Add A Tag

```
120
ALTER STABLE stb_name ADD TAG tag_name tag_type;
121 122
```

123
The preceding SQL statement adds a tag of the specified type to the supertable. A supertable cannot contain more than 128 tags. The total length of all tags in a supertable cannot exceed 16 KB.
124 125 126 127

### Remove A Tag

```
128
ALTER STABLE stb_name DROP TAG tag_name;
129 130
```

131
The preceding SQL statement deletes a tag from the supertable. When you delete a tag from a supertable, it is automatically deleted from all subtables within the supertable.
132 133 134 135

### Change A Tag

```
136
ALTER STABLE stb_name RENAME TAG old_tag_name new_tag_name;
137 138
```

139
The preceding SQL statement renames a tag in the supertable. When you rename a tag in a supertable, it is automatically renamed in all subtables within the supertable.
140 141 142 143

### Change Tag Length

```
144
ALTER STABLE stb_name MODIFY TAG tag_name data_type(length);
145 146
```

147 148 149 150 151 152 153 154
The preceding SQL statement changes the length of a BINARY or NCHAR tag column. Note that you can only specify a length greater than the current length. (Available in 2.1.3.0 and later versions)

### View a Supertable
You can run projection and aggregate SELECT queries on supertables, and you can filter by tag or column by using the WHERE keyword.

If you do not include an ORDER BY clause, results are returned by subtable. These results are not ordered. You can include an ORDER BY clause in your query to strictly order the results.


155 156

:::note
157
All tag operations except for updating the value of a tag must be performed on the supertable and not on individual subtables. If you add a tag to an existing supertable, the tag is automatically added with a null value to all subtables within the supertable.
158 159

:::