SpaceMonkey4969
Programmer
Hello
My question is:
I have 1 table, it is a table for USERS. In this table I store information about the user such as IP ADDRESS, Name, ID, time and Date.
I need to create a query that will Select the users Name, Ip, date and time etc, for a distinct IP. AKA a user can log in from many different locations, So i want to select there information from the table for each location they've logged in from.
so here is some data
24.66.19.216 dave 5/5/2003
24.66.19.216 dave 5/6/2003
24.66.19.216 dave 5/7/2003
24.77.77.77 dave 5/6/2003
24.77.77.77 dave 5/7/2003
etc..
I need a query that will only give me the Unique IP's for Dave. meaning i need to get the results of:
24.66.19.216 dave 5/6/2003
24.77.77.77 dave 5/6/2003
I simply just need the locations they've logged in from.
Please help
Thanks in advance
My question is:
I have 1 table, it is a table for USERS. In this table I store information about the user such as IP ADDRESS, Name, ID, time and Date.
I need to create a query that will Select the users Name, Ip, date and time etc, for a distinct IP. AKA a user can log in from many different locations, So i want to select there information from the table for each location they've logged in from.
so here is some data
24.66.19.216 dave 5/5/2003
24.66.19.216 dave 5/6/2003
24.66.19.216 dave 5/7/2003
24.77.77.77 dave 5/6/2003
24.77.77.77 dave 5/7/2003
etc..
I need a query that will only give me the Unique IP's for Dave. meaning i need to get the results of:
24.66.19.216 dave 5/6/2003
24.77.77.77 dave 5/6/2003
I simply just need the locations they've logged in from.
Please help

Thanks in advance