Per estrarre i record della tabella 'table' in cui il campo 'time_field' contenga una data compresa tra ieri e oggi, usare la query seguente:
SELECT * FROM table WHERE time_field >= DATE_SUB(CURRENT_DATE(), INTERVAL 1 DAY)
SELECT * FROM table WHERE time_field >= DATE_SUB(CURRENT_DATE(), INTERVAL 1 DAY)
SELECT nome,cognome FROM utenti WHERE nome = 'Pippo'Il cui risultato sara':
set @N = 0;Il cui output sara':
Query OK, 0 rows affected (0.27 sec)
SELECT @N := @N +1 AS numero,nome,cognome FROM utenti WHERE nome = 'Pippo'
display_errors = 0
ini_set( "display_errors", 0);