Wie kann ich DB Einträge zwischen zwei bestimmten Datums ausgeben?

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Wie kann ich DB Einträge zwischen zwei bestimmten Datums ausgeben?

    Hi leutz..

    wie kann ich Einträge aus meiner DB zwischen zwei übergebenen Datums ausgeben..

    Beispiel...

    ich will alle Einträge vom 10.05.2008 bis zum 11.09.2008.. in der Datenbank is ein timestamp gespeichert.. aber ich weis nicht wie ich das jetzt fildern soll..

    weis jemand ne Antwort..

    thanks!

  • #2
    BETWEEN kann helfen
    in der Datenbank is ein timestamp gespeichert
    Ein MySql Datum oder ein Unix Timestamp?
    Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

    [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
    Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

    Kommentar


    • #3
      mysql datum glaube ich

      also z.B.: 2008-07-13 11:22:57

      Kommentar


      • #4
        ich will alle Einträge vom 10.05.2008 bis zum 11.09.2008.
        PHP-Code:
        $sql "SELECT * FROM deineTabelle WHERE timestamp BETWEEN '2008-05-10 00:00:00' AND '2008-09-11 23:59:59'"
        irgendwie so z.B.
        Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

        [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
        Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

        Kommentar

        Lädt...
        X