I need to view all the tag information under a super table, but when I write it like this, it gives an error. Can someone explain it to me?
taos> use foo;
Query OK, 0 row(s) affected (0.002940s)
taos> create table stb (ts timestamp, c int) tags(loc int);
Create OK, 0 row(s) affected (0.010996s)
taos> show stables;
stable_name |
=================================
stb |
Query OK, 1 row(s) in set (0.007114s)
taos> show table tags from stb;
Query OK, 0 row(s) in set (0.010273s)
taos> show table tags from foo.stb;
DB error: syntax error near ".stb;" (0.000105s)
Try "show table tags from stb from foo"