MSSQL: Zeile nach Datums bereich auswählen

Das Date Zeug bekomme ich in den Griff. Nur bei FROM weiss ich nicht wie das gemeint ist und wie man das ggf. anpassen muss in Bezug auf temp. View.
Siehe Bild
 

Anhänge

  • Übersetzung.jpg
    Übersetzung.jpg
    206,6 KB · Aufrufe: 4
die ursprungstabelle ist ja footprints.dbo.MASTER8_FIELDHISTORY bei FROM cte und cnt ist meines Erachtens auch noch etwas anzupassen.
 
NE, nix footprints-blablabla da unten zum schluss
cnt und cte sind keine Aliase für Footprints

Genau so wie ich es geschrieben hatte
das cte und cnt bleibt im From/LEFT JOIN wie es ist

Ablauf:
das cte und cnt wird zuerst ausgeführt, und erzeugt eine InMemory-View, worauf dann die Innere SQL mit deinem Footprints-Zeug dann gejoint wird

Dein Footprints kommt genau an zwei stellen rein: Schau dir mal meine letzte Version an.
Da hatte ich genau zweimal meine Ur-Tabelle "tickets2" --> genau das muss durch dein Footprints ersetzt werden
 
Das sind die Fehlermeldungen:

Meldung 156, Ebene 15, Status 1, Zeile 7
Incorrect syntax near the keyword 'WITH'.
Meldung 319, Ebene 15, Status 1, Zeile 7
Incorrect syntax near the keyword 'with'. If this statement is a common table expression, an xmlnamespaces clause or a change tracking context clause, the previous statement must be terminated with a semicolon.
Meldung 102, Ebene 15, Status 1, Zeile 13
Incorrect syntax near ','.
Meldung 102, Ebene 15, Status 1, Zeile 28
Incorrect syntax near ')'.
 
Zurück