我有一个传感器单元网络,将定期轮询或将(未决定的)数据推送到服务器。每个单元都有一些静态属性,以及我想要记录的一些随时间变化的读数。我主要担心的是以下草图实际上是可以实现的:
NODE Table -> stores time varying values per node. I would also like to add a column to store references to the relevant row in the NODES table
Headings --> TimeStamp | Voltage | Current | Temp | Humidity | RoundRobinIndex
NODES Table -> stores static properties about each node
Headings --> Serial | Latitude | Longitude | IP | OtherProps | Pointer to NODE table
这是我第一次使用 MySQL(以及一般的数据库管理员),所以我想在沉浸在 MySQL 之前检查这是一种合理的方法。我也愿意接受其他数据库工具或方法的建议。
谢谢