
I'm trying to export a list (as PDF) of usernames and all the IP's these users have posted from. However, when I run the SQL query below, it's showing all the post IP's but not every username. In fact, out of the 254 registered members, it's only showing around 5 usernames.
Code: Select all
SELECT `poster_id` , `poster_ip` , `post_username`
FROM `quahappy_phpb2`.`phpbb_posts`
Code: Select all
SELECT `user_id` , `user_ip` , `username`
FROM `quahappy_phpb2`.`phpbb_users`
Many thanks in advance for any assistance.
