Zur Navigation

Datum aus Preistabelle abfrage

1 webuser

Hallo,
ich habe Preise für eine Ferienwohnung in einer Tabelle

Es sind Staffelpreise nach Datum.

Ab Bis
01.02.2011 31.05.2011
01.06.2011 31.08.2011
01.09.2011 25.10.2011
26.10.2011 22.12.2011

Mir fehlt noch die richtige Syntax für die Zeitraumabfrage.

Für eine Abfrage zum Beispiel 20.08.2011 bis 3.09.2011
sollen dann die Zeiträume
01.06.2011 31.08.2011
01.09.2011 25.10.2011

gefunden werden
jetzt versuche ich das mit
$result = mysql_query("SELECT abpreisdatum, bispreisdatum, preis FROM preise where bispreisdatum <= '".$endedate."' or abpreisdatum >= '".$startdate."' order by abpreisdatum" )

Die Datumsvariablen stehen in $startdate und $endedate
Das Ergebnis ist falsch.

Gruss Webuser

07.08.2011 16:26

2 webuser (Gast)

ich habs gelöst
 $result = mysql_query("SELECT  DATE_FORMAT(abpreisdatum, '%d.%m.%Y') as abpreisdatum1, DATE_FORMAT(bispreisdatum, '%d.%m.%Y') as bispreisdatum1, abpreisdatum, bispreisdatum, preis FROM preise where bispreisdatum >= '".$startdate."' and abpreisdatum <= '".$endedate."' order by abpreisdatum" )

Gruss
Webuser

07.08.2011 16:35

Beitrag schreiben (als Gast)

Die Antwort wird nach der Überprüfung durch einen Moderator freigeschaltet.





[BBCode-Hilfe]