Query clienti che non va
Inviato: 09/07/2007, 21:30
ho creato questa query che dovrebbe restituirmi i clienti che si sono registrati nell'ultimo mese ma secondo me non funziona bene qualcuno può testarla?
il numero in data unix 2592000 dovrebbe corrispondere ad 1 mese teoricamente...
Codice: Seleziona tutto
"select date_format(ci.customers_info_date_account_created,'%d/%m/%Y %H:%i') AS cidac, c.customers_id, c.customers_firstname, c.customers_lastname from customers c, customers_info ci where ci.customers_info_id = c.customers_id and (UNIX_TIMESTAMP(now()) - UNIX_TIMESTAMP(ci.customers_info_date_account_created)) < 2592000"