riteshuae Posted July 8, 2014 Share Posted July 8, 2014 Hi, i have installed prestashop 1.4.8.2, i need mysql query to extract below column information from database. id_customer, firstname, lastname, first order date thanks, Ritesh Link to comment Share on other sites More sharing options...
vekia Posted July 8, 2014 Share Posted July 8, 2014 select c.id_customer AS ID, c.firstname as Firstname, c.lastname as Lastname, o.date_add as 'order date' from ps_orders o INNER JOIN ps_customer c ON o.id_customer = c.id_customer group by id should work :-) Link to comment Share on other sites More sharing options...
Recommended Posts