I want to return a list of documents with only the most current version number.
Seems I should be able to do this one of two ways, but I can't make either work.
SELECT MAX (fieldname) FROM (qryname) works with a single column query, but not with multi columns.
SELECT (fieldnames) FROM (qryName) ORDER BY (desc) LIMIT (1) I can't get it to work at all. It works fine till I try to insert the limit condition then it throws a syntax error. I've entered the limit value with and without parentheses or brackets, and I've placed it at different points within the statement, to no avail.
I'll take any ideas from the group mind here!
thanks
Amy