I would like to ask, if there are 3 devices ("DEVICE001", "DEVICE002", "DEVICE003") in the same time series, is it possible to read all device data at one time in the same database query?
Currently, the following database queries are used to read the data from different devices separately:
"SELECT * FROM root.location.data.DEVICE001"
"SELECT * FROM root.location.data.DEVICE002"
"SELECT * FROM root.location.data.DEVICE003"
But I think to achieve one database query, the prerequisite is to know DEVICE00X before you can write the query statement. Is there any ways to include all device names to query all data?
Does anyone can deal this problem? Help please