mysql中,inner join和where的结合问题 50
大家好。我在做作品的时候有个疑问想问下:我的这个页面是一个显示文章详细页面的third.php网页,是通过点击文章列表页second.php,然后根据点击获取到的id跳到...
大家好。我在做作品的时候有个疑问想问下:
我的这个页面是一个显示文章详细页面的third.php网页,是通过点击文章列表页second.php,然后根据点击获取到的id跳到这里来的,但问题是,我这个third.php详细页面需要用到多表查询,而在从second.php跳转过来的时候必须判断点击的ID值是多少,这样的话,inner join和where同时出现了,但我不知道怎样才能够让二者同时执行……,既能通过点击second.php的标题获取相应ID值跳转到third.php,又能同时在third.php页面中实现多表查询,请高手帮帮忙,很重要,下面是third.php相应代码,回答正确我会追加分的,谢谢啊!!!!
<?php
include("conn.php");
if(!empty($_GET['edit'])){ //判断second.php页面点击的ID是多少
$edit=$_GET['edit'];
$sql="select u.id,username,tx,postnum,replynum,nb,regtime,points,n.title,n.contents
from userinfo as u inner join note as n on u.id=n.userid "; //实现多表查询
$query=mysql_query($sql);
$rs=mysql_fetch_array($query);
//下面这几句是之前还没写inner join的时候,用来判断second.php页面点击时的ID的,就是用where来判断,但是现在用了inner join之后,不知道该怎样协调二者的语法
//$sql="select * from `note` where id='$edit'";
//$query=mysql_query($sql);
//$rs=mysql_fetch_array($query);
}
?> 展开
我的这个页面是一个显示文章详细页面的third.php网页,是通过点击文章列表页second.php,然后根据点击获取到的id跳到这里来的,但问题是,我这个third.php详细页面需要用到多表查询,而在从second.php跳转过来的时候必须判断点击的ID值是多少,这样的话,inner join和where同时出现了,但我不知道怎样才能够让二者同时执行……,既能通过点击second.php的标题获取相应ID值跳转到third.php,又能同时在third.php页面中实现多表查询,请高手帮帮忙,很重要,下面是third.php相应代码,回答正确我会追加分的,谢谢啊!!!!
<?php
include("conn.php");
if(!empty($_GET['edit'])){ //判断second.php页面点击的ID是多少
$edit=$_GET['edit'];
$sql="select u.id,username,tx,postnum,replynum,nb,regtime,points,n.title,n.contents
from userinfo as u inner join note as n on u.id=n.userid "; //实现多表查询
$query=mysql_query($sql);
$rs=mysql_fetch_array($query);
//下面这几句是之前还没写inner join的时候,用来判断second.php页面点击时的ID的,就是用where来判断,但是现在用了inner join之后,不知道该怎样协调二者的语法
//$sql="select * from `note` where id='$edit'";
//$query=mysql_query($sql);
//$rs=mysql_fetch_array($query);
}
?> 展开
3个回答
推荐于2017-08-25
展开全部
mysql中,inner join和where的结合问题
1
2
select u.id,username,tx,postnum,replynum,nb,regtime,points,n.title,n.contents
from userinfo as u inner join note as n on u.id=n.userid where n.id='$edit'
1
2
select u.id,username,tx,postnum,replynum,nb,regtime,points,n.title,n.contents
from userinfo as u inner join note as n on u.id=n.userid where n.id='$edit'
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select u.id,username,tx,postnum,replynum,nb,regtime,points,n.title,n.contents
from userinfo as u inner join note as n on u.id=n.userid where n.id='$edit'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |