merhaba arkadaşlar haber_goruntulenme sorgusu farklı olduğu için 1 artırmam lazım önceki whilden ayrı şekilde aynı yerde döndürmem gerekiyor nasıl yapabilirim?

<td><?php echo $islem['haber_goruntulenme'] ?></td> //yapmak istediğim bunu bir önceki whilden ayrı döndürmem gerekiyor

  <?php 
              $sorgu = $db->prepare("SELECT * FROM haberler Where haber_id=:id");
$sorgu->execute(array(
"id" => $id
));
$islem = $sorgu->fetch(PDO::FETCH_ASSOC);

?>

              <tbody>

                <?php 

                $say=0;

                while($menucek=$menusor->fetch(PDO::FETCH_ASSOC)) { $say++?>


                <tr>
                 <td width="20"><?php echo $say ?></td>
                 
                 <td><?php echo $menucek['xxxx_ad'] ?></td>
                 <td><?php echo $menucek['xxxx'] ?></td>
                 <td><?php echo $menucek['xxxxx'] ?></td>
                
                 
                 <td><?php echo $islem['haber_goruntulenme'] ?></td>  //yapmak istediğim bunu bir önceki whilden ayrı döndürmem gerekiyor