Without where cluase indexes are useless except in some scenarios.
One of scenario is mentioned by Bret where you could use covered index.
Other I could think is that if you have an order by clause and in this case as well index could be used if it existis on the columns in order by clause. It is being used to reduce the sorting of the data.
Thanks