たとえば、次の 2 つのデータ テーブルがあります。
ネットワークの状態
ipaddress time violation
192.168.1.1 2:00 yes
192.168.1.6 2:00 no
192.168.1.11 2:00 no
192.168.1.1 3:00 no
192.168.1.6 3:00 no
192.168.1.11 3:00 yes
と
ファイアウォール ログ
ipaddress machinetype location
192.168.1.1 computer London
192.168.1.6 server New York
192.168.1.11 server Bejing
そして、ファイアウォール ログからのデータをネットワーク ステータス テーブルにマージしたいので、次のようになります。
ネットワークの状態
ipaddress time violation machinetype location
192.168.1.1 2:00 yes computer London
192.168.1.6 2:00 no server New York
192.168.1.11 2:00 no server Bejing
192.168.1.1 3:00 no computer London
192.168.1.6 3:00 no server New York
192.168.1.11 3:00 yes server Bejing
誰にもアイデアはありますか?特定の列の値でテーブルをマージするコマンドがあると思いましたが、調査の結果、結合と選択のコマンドにしか遭遇しませんでした。しかし、これらを使用して目的を達成する方法がわかりません。
ありがとう!