• I can't get to the SQL Fiddle page but I can say that the BETWEEN clause suggested in the below query is not a suggested best practice when evaluating for data within a date range.

    joe.wolfe (11/4/2013)


    SELECT H.DriverName, R.RepairCost, R.RepairDate , r.VehicleID

    FROM Repairs AS R

    INNER JOIN Vehicles AS V ON R.VehicleID=V.VehicleID

    INNER JOIN History H ON H.VehicleID=V.VehicleID

    WHERE H.DriverName='John' AND R.RepairDate BETWEEN '01.01.2013' AND '04.01.2013'

    ORDER BY R.VehicleID, R.RepairDate

    Not to mention that it probably won't work with dates formatted with . separators, unless there's some obscure SQL setting that turns that on.

    Proper construct would be more like:

    RepairDate >= '2013-01-01' AND RepairDate < '2013-04-01'


    My mantra: No loops! No CURSORs! No RBAR! Hoo-uh![/I]

    My thought question: Have you ever been told that your query runs too fast?

    My advice:
    INDEXing a poor-performing query is like putting sugar on cat food. Yeah, it probably tastes better but are you sure you want to eat it?
    The path of least resistance can be a slippery slope. Take care that fixing your fixes of fixes doesn't snowball and end up costing you more than fixing the root cause would have in the first place.

    Need to UNPIVOT? Why not CROSS APPLY VALUES instead?[/url]
    Since random numbers are too important to be left to chance, let's generate some![/url]
    Learn to understand recursive CTEs by example.[/url]
    [url url=http://www.sqlservercentral.com/articles/St