问:从 Postgres 获取数字(整数)并在图表上加上逗号

Q: Getting number(integer) from Postgres and putting comma on chart

我需要什么

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

我做了什么

SQL查询

select to_char(numberOne,'FM999G999G999') from tableOne

输入这段代码我得到一张空白图表

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

select numberOne from tableOne

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

我在 phplot.php 的第 4518 行中输入了

$i = 0;
$which_lab = null;
foreach($argv as $value) {
    if($i == 0) {
        $i++;
        $which_lab.= number_format($value, 2, ',','.');
    }
}