I need to combine two tables by name and time and get the result in one row in the form
_value_sdc, _value_sdbi, _value_sdco,_value_sdc. These data arrive at the same time but have different measurement and a common tag name.
. The request returns the correct response, but in several lines. Tell me how to do it.
Could you send your input data? it is quite hard to see where the columns should combine in the join.
Furthermore try to use join inner since join is deprecated: join.inner() function | Flux Documentation
Then within a join.inner you could use as: for example: as:(l, r) => ({l with label: r._value})