SELECT ID, AppID, Description, Min([Transaction Date]) AS TransactionDate FROM AppProsHist WHERE [Description]='Non-Final Rejection' GROUP BY ID, AppID, Description ORDER BY TransactionDate DESC
I keep getting the "Parameter Value" field for "TransactionDate". Does anyone know how I can leave?
TransactionDate is an alias for expressing a field Min([Transaction Date])
TransactionDate
Min([Transaction Date])
Access does not accept an alias ORDER BY. Any of these two alternatives should work ...
ORDER BY
ORDER BY Min([Transaction Date]) DESC ORDER BY 4 DESC
Source: https://habr.com/ru/post/1629934/More articles:XPages: IBM OneUI vs. Bootstrap - cssHow to get the selected option in angular - javascriptFind all possible substrings of length n - rpython understanding loop for dictionary - pythonArray return when calling Fortran from Python using Ctypes - pythonHow to check if a view model works in design mode or not in C # - c #Chrome slowly loading first AJAX response - javascriptshow 2 different tables using ng-repeat using custom directives - javascripthttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1629938/using-queries-to-retrieve-data-from-connected-tables&usg=ALkJrhiHaC0MtK5IvROdQNowyRExQG_rMQNg-repeat is not updated after pushing the value into the array, tried $ scope. $ Apply (), but returns an error - javascriptAll Articles