Need All the posts with id, title and date [closed]

You can use get_posts to get a list of posts, and then the WP_Post member variables to get and display the data that you need

You van do something like this. You can refine it as you need

<?php
$args = array( 'posts_per_page' => -1); 
$posts= get_posts( $args );
if ($posts) {
    foreach ( $posts as $post ) {
        setup_postdata($post);
        echo '<p>' . $post->post_title . '(' . $post->ID . ')'  . ' was posted on  ' .  $post->post_date . '</p>';
    }
}

This will output

TEST POST SUB(312) was posted on 2014-05-29 15:47:26