Doctrine\DBAL\Driver\SQLSrv\SQLSrvStatement::fetchColumn PHP Method

fetchColumn() public method

public fetchColumn ( $columnIndex )
    public function fetchColumn($columnIndex = 0)
    {
        $row = $this->fetch(PDO::FETCH_NUM);
        if (false === $row) {
            return false;
        }
        return isset($row[$columnIndex]) ? $row[$columnIndex] : null;
    }