0

我需要的

从查询中获取两个整数,然后像十进制一样输入。示例:214566214.566

我做了什么

SQL 查询

select to_char(numberOne,'FM999G999G999') from tableOne

输入此代码,我得到一个空白图表 在此处输入图像描述

更改查询以获得简单结果,图表变为可见 SQL 查询

select numberOne from tableOne

在此处输入图像描述

请记住,数字是“整数”类型

4

1 回答 1

0

在 phplot.php 的第 4518 行中,我放了

$i = 0;
$which_lab = null;
foreach($argv as $value) {
    if($i == 0) {
        $i++;
        $which_lab.= number_format($value, 2, ',','.');
    }
}
于 2015-02-11T10:38:35.987 回答