SQL Alternative à la déclaration maximale

--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;
Lucky-Magnet