gpt4 book ai didi

php - 如何在单个 json 中合并来自多个查询的多个结果

转载 作者:搜寻专家 更新时间:2023-10-30 23:35:33 25 4
gpt4 key购买 nike

我很想知道如何将两个查询的结果合并到一个 json 文件中?

i have one query : Select * from student

and my second query : select * from teacher

$result = array_merge($query1, $query2);
echo json_encode($result);

我已经使用了 array_merge 但它不起作用,我该如何解决这个问题。感谢您的帮助

最佳答案

根据您的评论,您在两个表之间存在关系,因此您只需使用单个查询来获得这样的合并结果。

只需使用 mysql JOIN

select * from student join teacher on student.teacher_id = teacher.id ;

on condition should be changed as your need with your relatioship columns

关于php - 如何在单个 json 中合并来自多个查询的多个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43060985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com