You could do
Code:
SELECT DISTINCT ipaddress FROM post
to get a list of every ip that anyone has posted from. You might also want
Code:
SELECT DISTINCT ipaddress FROM user
to get the registration ips. Someone who is better at sql than I am might be able to figure out a way to get one list of distinct ip addresses from both tables in one query, but it's beyond me.