I suspect I know the answer to this already, but...
Given the following 3 MySQL statements:
SELECT SQL_CALC_FOUND_ROWS title FROM STUFF LIMIT 1000000, 1;
SELECT SQL_CALC_FOUND_ROWS title FROM STUFF LIMIT 1;
SELECT title FROM STUFF;
Is there a significant difference in performance between the three?