如何获取TDengine数据库中每一列的最新记录?
How to get the latest records of each column in TDengine database?
我的常规 table 有两列,我想知道每列的最新记录,我应该使用什么 SQL 命令? table的架构如下:
你可以试试
select last(c1) from tbname
此查询将返回 c1
的最后一个 non-null 值
或者你可以试试
select last_row() from tbname
查询将 return table 的最后一行,无论该列是否为 null
我的常规 table 有两列,我想知道每列的最新记录,我应该使用什么 SQL 命令? table的架构如下:
你可以试试
select last(c1) from tbname
此查询将返回 c1
的最后一个 non-null 值或者你可以试试
select last_row() from tbname
查询将 return table 的最后一行,无论该列是否为 null