PDO中数据类型的条件浮动时如何返回结果?

I have a data like this and I call it table normal:

    z       0         0.01       0.02  
   ---    ------     -------    ------

   -3.4   0.0003     0.0003     0.0003

   -3.3   0.0005     0.0005     0.0005

   -3.2   0.0007     `0.0007`     0.0006

   -3.1   0.001      0.0009     0.0009

   -3     0.0013     0.0013     0.0013

And I have value of z = -3.21

it means value of z in rows = -3.2 and in column = 0.01

So, I will get the value = 0.0007

I use PDO in my code to get any value from database:

public function SelectTableZ($col, $z){
        try{
            $query = "SELECT :col as value FROM table_normal WHERE z=:z";

            $this->Statement = $this->Connection->prepare($query, array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY));

            $this->Statement->bindParam(":col",$col,PDO::PARAM_STR);

            $this->Statement->bindParam(":z",$z,PDO::PARAM_STR);

            $this->Statement->execute();

            $this->Statement->setFetchMode(PDO::FETCH_OBJ);

            $result = $this->Statement->fetchAll();

            $this->Statement->closeCursor();

            if($result){
                return $result;
            } /*else throw new Exception("Comment not selected!");*/ else return false;
        }catch(Exception $e){
            echo "Caught Exception: ".$e->getMessage();
            return null;
        }
    }

and this is the value I want to get from database:

$value = -3.21;

$Z = number_format($value * 10, 0, '', '') / 10;

$col = substr(floor($value * 100), -1);
if ($col > 0) { 
    $col /= 100; 
}

$SelectTableZ = $session->SelectTableZ($col, $z);
if(!empty($SelectTableZ)){
  foreach($SelectTableZ as $data){
    echo $data->value;
  }
}

Is there any solutions to this problem?

thanks.