创建没有多个SQL查询的JSON对象(PHP)

时间:2014-04-04 18:51:31

标签: php mysql json

我尝试使用MySQL / PHP创建这种JSON对象。

[ 
{
  "hours":0
  "vulnerability":867
  "file":166
  "virus":59
}, 
{
  "hours":1
  "vulnerability":400
  "file":14
  "virus":40
}, 
]

我试图减少发送到服务器的查询量,因为我的数据库扩展得非常大。我的查询返回以下结果:

SQL data

因此,在循环访问数据时,我得到了这种JSON:

{
  "hours":0
  "vulnerability":867
}, 
{
  "hours":0
  "file":14
}, 
{
  "hours":0
  "virus":59
}, 
]

我想在foreach循环中不使用多个SQL查询来创建所需的输出。完整代码如下 -

$query = "SELECT hour(generated_time) as hours, subtype, count(subtype) as y from description group by subtype, hours order by hours asc, y desc";
$result = mysql_query($query) or die(mysql_error());

$output = array();
$data = array();

while ($row = mysql_fetch_assoc($result)) {
    $data["time"] => $row['hours'];
    $data[$row['subtype']] => $row['y'];
    array_push($output, $data);
}

echo json_encode($output);

3 个答案:

答案 0 :(得分:2)

只需运行一次SQL查询,然后遍历结果并将每一行放在正确的位置。

这样的事情:

$output = array();

while ($row = mysql_fetch_assoc($result)) {
    $key = intval($row['hours']);
    if(!isset($output[$key])){
        $output[$key] = array('hours' => $key);
    }
    $output[$key][$row['subtype']] = intval($row['y']);
}

echo json_encode($output);

答案 1 :(得分:1)

如果您提前了解所有子类型,则可以重写查询以按照您希望的方式格式化数据:

SELECT
    hour(generated_time) as hours,
    SUM(subtype = "vulnerability") AS vulnerability,
    SUM(subtype = "file") AS file,
    SUM(subtype = "virus") AS virus
FROM
    description
GROUP BY hours 

答案 2 :(得分:0)

这只是一个mySQL查询。它被放入关联数组中,并且循环不会调用更多的mySQL查询,而是查看循环中关联数组中的条目。