我使用我的第一个查询来获取用户的 ID 和名称,如下所示:
select id,name from temp_card where sex='$sex' and city='$city' order by name ASC
然后我有第二个查询,它使用第一个查询的结果,并从另一个表中获取更多数据:
select images from temp_card_images where temp_card_id=". $row['id'] ." order by id ASC limit 1
如何结合这两个查询,以便在单个 while 循环中打印出 3 个字段(id、name 和 images)?
谢谢!