Icy Phoenix

     
 

[SOLVED] Export Email Addresses To A CSV File

[SOLVED] Export Email Addresses To A CSV File

Article
Reply with quote    Download Post  
Post Export Email Addresses To A CSV File 
 
How do I export the email addresses to a csv file format?

Thanks,

Dave



 
christmanrd - View user's profile Send private message  
christmanrd [ Fri 23 Apr, 2010 21:53 ]
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us


[SOLVED] Export Email Addresses To A CSV File

Comments
Reply with quote    Download Post  
Post Re: Export Email Addresses To A CSV File 
 
MySQL Forums?.  

This assumes that your DB prefix is ip_ and that you don't have more than a 1000 users.

Go To

phpMyAdmin > YOUR DB > SQL > Run this Query Code:

Code: [Download] [Hide] [Select]
SELECT COUNT( * ) AS `Rows` , `user_email`
FROM `ip_users`
GROUP BY `user_email`
ORDER BY `user_email`
LIMIT 0 , 1000



> Query results operations > Export > CSV > GO



 
   
Inactive User [ Sat 24 Apr, 2010 09:18 ]
Reply with quote    Download Post  
Post Re: Export Email Addresses To A CSV File 
 
Lopalong wrote: [View Post]
MySQL Forums?.  

This assumes that your DB prefix is ip_ and that you don't have more than a 1000 users.

Go To

phpMyAdmin > YOUR DB > SQL > Run this Query Code:

Code: [Download] [Hide] [Select]
SELECT COUNT( * ) AS `Rows` , `user_email`
FROM `ip_users`
GROUP BY `user_email`
ORDER BY `user_email`
LIMIT 0 , 1000



> Query results operations > Export > CSV > GO



Thanks a bunch Lopalong.  That is exactly what I needed.




 
christmanrd - View user's profile Send private message  
christmanrd [ Sat 24 Apr, 2010 11:58 ]
Reply with quote    Download Post  
Post Re: Export Email Addresses To A CSV File 
 
You're welcome, But you could tag it as "Solved" as Staff Members seem to be in short supply at the moment.



 
   
Inactive User [ Mon 26 Apr, 2010 23:29 ]
Reply with quote    Download Post  
Post Re: Export Email Addresses To A CSV File 
 
Lopalong wrote: [View Post]
You're welcome, But you could tag it as "Solved" as Staff Members seem to be in short supply at the moment.


Done!  Sorry.



 
christmanrd - View user's profile Send private message  
christmanrd [ Mon 26 Apr, 2010 23:45 ]
Display posts from previous:    

HideWas this topic useful?

Post new topic  Reply to topic  Page 1 of 1