According to:http://codex.wordpress.org/Function_Reference/query_posts
To show all posts in a category:
query_posts( array ( 'category_name' => 'The Category Name', 'posts_per_page' => -1 ) );
Works great, but if I want to show the posts
ORDER BY ID DESC
Anyone have any idea how to do that?