What is the most efficient way to read the last row with SQL Server?
The table is indexed on a unique key -- the \"bottom\" key values represent the last row.
Try this
SELECT id from comission_fees ORDER BY id DESC LIMIT 1