赞
踩
SHOW version
我们可以使用SHOW STORAGE GROUP
语句来查看系统当前所有的存储组,SQL语句如下:
# 查看组
SHOW STORAGE GROUP
执行结果为:
IoTDB> SHOW STORAGE GROUP
+-------------+
|storage group|
+-------------+
| root.ln|
+-------------+
Total line number = 1
It costs 0.385s
为了查看指定的时间序列,我们可以使用SHOW TIMESERIES <Path>
语句,其中<Path>
表示时间序列对应的路径,默认值为空,表示查看系统中所有的时间序列。下面是两个例子:
使用SHOW TIMESERIES
语句查看系统中存在的所有时间序列,SQL语句如下:
# 查看表
SHOW TIMESERIES
执行结果为:
IoTDB> SHOW TIMESERIES
+-----------------------------+-----+-------------+--------+--------+-----------+----+----------+
| timeseries|alias|storage group|dataType|encoding|compression|tags|attributes|
+-----------------------------+-----+-------------+--------+--------+-----------+----+----------+
|root.ln.wf01.wt01.temperature| null| root.ln| FLOAT| RLE| SNAPPY|null| null|
| root.ln.wf01.wt01.status| null| root.ln| BOOLEAN| PLAIN| SNAPPY|null| null|
+-----------------------------+-----+-------------+--------+--------+-----------+----+----------+
Total line number = 2
It costs 0.073s
查看具体的时间序列root.ln.wf01.wt01.status
的SQL语句如下:
SHOW TIMESERIES root.ln.wf01.wt01.status
执行结果为:
IoTDB> SHOW TIMESERIES root.ln.wf01.wt01.s
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。