現在、スイッチに3つのポートが使用されており、以下のSQLでトラフィックを監視しようとしています。同じ行が複数回返される
select a.interface, a.utilization_in, b.utilization_out from
(select z.source as interface, y.samplevalue as utilization_in from #TABLE1 z
join #TABLE2 y
on z.table_id = y.table_id
where z.source = 'switch1' and z.port like 'port_in%') a
INNER JOIN
(select x.source as interface, w.samplevalue as utilization_out from #TABLE1 x
join #TABLE2 w
on x.table_id = w.table_id
where x.source = 'switch1' and x.port like 'port_out%') b
on a.interface=b.interface
これは私に結果を取得しますが、それぞれの行が数回繰り返され、3×3 = 9は、私の周りを検索し、いくつかは、UNION演算子を使用していることが判明しています。しかし、私はそれを置く場所でも迷っています。ありがとう
それは彼に彼が望むものを与えません。 – sagi