Hey I've found a lot of people asking questions similar to mine but not exactly the same.
I have a database that stores IPs. There is a server field and a client field. I want to look through both these fields and pull out all the distinct IPs for them and then find out how many occurrences there are of each IP as a client and as a server.
http://forums.devx.com/showthread.php?t=19168 <-- this was kind of similar but not quite.
This is what I have right now:
use mydb
select y.client_ip as "IP",
(select count(*)
from t_Events x
where start_time BETWEEN '10/7/2010 08:00:00 AM' AND '10/7/2010 04:00:00 PM' AND x.client_ip = y.client_ip) as "Count of client IP",
(select count(*)
from t_Events x
where start_time BETWEEN '10/7/2010 08:00:00 AM' AND '10/7/2010 04:00:00 PM' AND x.client_ip = y.server_ip) as "Count of Server IP"
from t_Events y
Group By y.client_ip, y.server_ip
this didn't work because I realize I'm only looking at IPs that are in the client_ip field.
So, how can I can I count how may time each IP shows up in the server and the client field? Do I need to make a temp table first?