Hey, could use a little help here. I must be brain dead but I can't think at all, I need help.
I have a table with a bunch of IP addresses in it and a lot of them are the same, how do I --
Remove all the IP's except for one of each?
Like I'll give an example:
IP_Addr
-----------
1.1.1.1
1.1.1.1
1.2.3.4
1.2.3.4
1.2.3.4
1.2.3.4
1.1.1.1
2.2.2.2
2.2.2.2
3.3.3.3
3.3.3.3
how do I get the list to look like
IP_Addr
---------
1.1.1.1
1.2.3.4
2.2.2.2
3.3.3.3.
?????
Please help, much appreciated!
SDM