当前位置:Gxlcms > PHP教程 > 数据库数据调用问题

数据库数据调用问题

时间:2021-07-01 10:21:17 帮助过:23人阅读

表 business_circle
字段 id name parent_id
1 朝阳 0
2 昌平 0
3 大望路 1
4 呼家楼 1
5 朝阳公园 1

$sql1 = mysql_query("select * from business_circle order by id asc");
while($rs1 = mysql_fetch_assoc($sql1)){
echo $rs1['name'].$rs1['parent_id'].'
';
}
调出的结果是
大望路 1
呼家楼 1
朝阳公园 1

parent_id就是父类的id
我想调出的结果是
大望路 朝阳
呼家楼 朝阳
朝阳公园 朝阳


完整代码应当怎么写,高手帮忙下,直接给完整代码,谢谢


回复讨论(解决方案)

$rs = mysql_query("select.name, b.name as pname from business_circle a, business_circle b where a.parent_id = b.id");while($row = mysql_fetch_assoc($rs)) {  echo $row['name'] . ' ' . $row['pname'] . '
';}

楼上 的大哥谢谢了,但调不出来,显示空白

大神写错了点地方.帮忙补上.

$rs = mysql_query("select a.name, b.name as pname from business_circle a, business_circle b where a.parent_id = b.id");while($row = mysql_fetch_assoc($rs)) {  echo $row['name'] . ' ' . $row['pname'] . '
';}



希望能帮到你.

人气教程排行