Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Need Help on SQL Query

    jkiley (7/30/2008)


    Consider the following QUERY:

    SELECT LastName, FirstName, COUNT(TripID) TripTotal

    FROM Clients

    JOIN Trips on tripClientID = ClientID

    JOIN Accounts on accountClientID = ClientID

    WHERE (tripDate BETWEEN '06-01-08' AND '06-30-08') AND (accountID = 501)

    GROUP BY...

Viewing post 1 (of 2 total)