mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 04:12:55 +00:00
* feat: support desc [table] Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * refine style Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
18 lines
262 B
SQL
18 lines
262 B
SQL
create table host_load1(
|
|
ts timestamp time index,
|
|
collector string,
|
|
host string,
|
|
val double,
|
|
primary key (collector, host)
|
|
);
|
|
|
|
describe table host_load1;
|
|
|
|
describe host_load1;
|
|
|
|
desc table host_load1;
|
|
|
|
desc host_load1;
|
|
|
|
drop table host_load1;
|