Answers for "sql max function alternative"

SQL
0

sql alternative to max statement

--Find the MAX value row without the use of the MAX() Function

select column_a, column_b, column_value
from table_name
order by column_value desc
fetch first 1 rows only;
Posted by: Guest on July-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language