>>108
何を基準に並べるのか知らないが、仮に登録日順(create_date)に並べたかったら

(昇順)SELECT * FROM hoge ORDER BY create_date LIMIT 100
(降順)SELECT * FROM hoge ORDER BY create_date DESC LIMIT 100