The Usage of .except in Query

Hi every body…
please look at the below queries…

Order.limit(5)
Order.limit(5).offset(4).except(:offset)

Both the queries will give same result. If then; the use of .except here
is needless.

My question is that where that(.except) could be more useful. can u
please explain me a context for that.