Forum Replies Created

Viewing post 46 (of 46 total)

  • RE: Want to add MAX function to query

    It might be fun to try out the HAVING clause...

    INNER JOIN InventTrans G

    on (a.itemid = g.itemid)

    GROUP BY <selected columns>

    HAVING MAX(G.DateExpected) > GETDATE() - 90

    Just be aware...

Viewing post 46 (of 46 total)