Nel file CUSTOMERS.PHP leggo la seguente stringa:
Codice: Seleziona tutto
$customers_query_raw = "select distinct c.customers_id, c.customers_lastname, c.customers_firstname, c.customers_group_id, a.entry_company, c.customers_email_address, a.entry_country_id from " . TABLE_CUSTOMERS . " c left join " . TABLE_ADDRESS_BOOK . " a on c.customers_id = a.customers_id and c.customers_default_address_id = a.address_book_id " . $search . " order by c.customers_lastname, c.customers_firstname";
Vorrei poterla ordinare in base alla data di creazione dell'account.
Che modifica dovrei fare?