The above stack overflow post had a up-voted answer said yes but when I look at the comment, the discussion brought me a degree of curiousness. Where it mentioned
"If you use LIMIT row_count with ORDER BY, MySQL ends the sorting as soon as
it has found the first row_count rows of the sorted result, rather than
sorting the entire result."
which is a reference at http://dev.mysql.com/doc/refman/5.0/en/limit-optimization.html
That is only the case of if we use ORDER BY in the query, but not simply applied to SELECT and FETCH a row.
So my question is fetch equivalent limit 1 in a simple SELECT and fetch statment?