So I was wondering what if at the end of a simple SQL query in PHP like this:
    $sentence = $connection->prepare("
        SELECT * FROM posts_comments WHERE comment_on = $id ORDER BY date DESC LIMIT 2
    ");
    $sentence->execute();
    return $sentence->fetchAll();
I didn't put the fetchAll() function, so it would be like this:
    $sentence = $connection->prepare("
        SELECT * FROM posts_comments WHERE comment_on = $id ORDER BY date DESC LIMIT 2
    ");
    $sentence->execute();
Will there be any difference in the result or it would be the same?