How Do You Use The MAX Function In Microsoft Access SQL?
It’s a snap to find the largest value in a column: just use the MAX function. Open the SQL view window. Type “SELECT MAX.” Next, type the name of the column containing the values you want to search. For example: SELECT MAX salary. Enclose the column name in parentheses. For example: SELECT MAX (salary). Press Enter. Type “FROM” and the name of the table containing the column. For example: FROM EmployeeTable. Run the query.