Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Können wir die PHP-Funktion strtotime in Mysql Query verwenden

Ihr Code muss so lauten:

$result = "select * from table 
              where unix_timestamp(Date) >= unix_timestamp(".$_POST[DateFrom1].")  
&& unix_timestamp(Date) <= unix_timestamp(".$_POST[DateTo1].")";

Um das Datum in Zeitstempel in MySQL umzuwandeln, gibt es die Funktion unix_timestamp .