Jump to content

customer details expot to csv file, check in please!


Recommended Posts

  • 3 weeks later...

Use phpmyadmin and use a query like this:

SELECT * FROM ps_customer c, ps_address a where c.id_customer = a.id_customer and c.active = 1 and c.deleted = 0;

export this to a file and then delete the columns you don't want in excel (or change "select * " to "Select your-columns-of-interest").

Link to comment
Share on other sites

×
×
  • Create New...