SHOW CREATE TABLE table_name
The SHOW CREATE TABLE command shows the CREATE TABLE statement that creates
the given table.
hypertable> SHOW CREATE TABLE foo;
CREATE TABLE foo (
a,
b,
c,
ACCESS GROUP bar (a, b),
ACCESS GROUP default (c)
)