I have a CSV file that is a little over a half million lines long by ten columns wide.
I need to take out common IP addresses that have two specific protocols (UDP and IGMP) and filter out all other IP addresses that only have one associated protocol. Here is an example of the data in my table:
So, this query would run and output:
It returns the IP/server that has BOTH UDP and IGMP and NOT the server that only has UDP. How can I do this? This needs to be run against 510,000+ lines with about 11,000 unique IPs.