How do I grab the largest number in a table?
I have a query that does this but I would like to grab this number and assign it to a variable that I can increment and embed it into a string of characters from inside of an event procedure...
There must be an easy way to do this...
thanks
Code:
SELECT DISTINCTROW Max([Mtbl].[DCode]) AS [Max Of DCode]
FROM Mtbl;