2

例如,我创建了两个页面和两个 MySQL 表。

Index.php&citys.php

城市

 ID     City       Country  Population
 --------------------------------------
 1      Amsterdam     NL     1500000
 2      Rotterdam     NL     900000
 3      Dusseldorf    DE     1800000

注释

ID   City        Name   Comment
---------------------------------
 1   Dusseldorf  Jack   Great city!
 2   Dusseldorf  John   Beautiful
 3   Rotterdam   Emy    Love it

目前我只使用这样的表citys

index.php链接到citys.php

<a href='citys.php?cmd=menu&id=";echo $row['id'];echo "'>

citys.php使用此代码显示来自 MySQL 的数据:

<?php
    include "connect.php";
    if(!isset($cmd))
    {
        if($_GET["cmd"]=="menu" || $_POST["cmd"]=="menu")
        {
            if (!isset($_POST["submit"]))
            {
                $id = $_GET["id"];
                $sql = "SELECT * FROM citys WHERE id=$id";
                $result = mysql_query($sql);
                $row = mysql_fetch_array($result);
?>

<?php echo $row["City"] ?>
<br><br>

<?php echo $row["Country"] ?>
<br><br>
<?php echo $row["Population"] ?>

直到这里一切都显示出来并且工作正常。

但我也想在第 2 页显示评论。因此必须编辑查询才能从表中获取正确的数据comments

我尝试了来自互联网的不同示例,我自己编辑了这些示例:

<?php
    include "connect.php";
    if(!isset($cmd))
    {
        if($_GET["cmd"]=="menu" || $_POST["cmd"]=="menu")
        {
            if (!isset($_POST["submit"]))
            {
                $id = $_GET["id"];
                $sql = "SELECT citys.*, comments.* FROM citys, comments WHERE citys.id=$id AND comments.city=citys.city";
                $result = mysql_query($sql);
                $row = mysql_fetch_array($result);
?>

但没有任何效果。

我怎样才能解决这个问题?


VIPIN JAIN's answer的查询有效,但还存在一个问题:

询问:

$sql = "SELECT * FROM citys LEFT JOIN comments ON comments.city=citys.city WHERE citys.id=$id";

如果表 'comments' 有三行,则此代码仅显示最后两行,但不显示第一行:

<?php
    while($row = mysql_fetch_array($result)) {
        echo "<br><br>";
        echo $row['name'];
        echo "<br>";
        echo $row['comment'];
    }
?>

如果我尝试这个,它只会显示第一行。

<?php echo $row["name"] ?>
<br>
<?php echo $row["comment"] ?>

我不知道为什么第一条记录被留在循环中。

4

2 回答 2

7

Use this query

$sql = "SELECT * FROM citys LEFT JOIN comments ON comments.city=citys.city WHERE citys.id=$id";

Use leftjoin for this type of work

于 2012-04-16T10:31:56.320 回答
4
select * from citys 
left join comments on comments.city = citys.city 
where citys.id=$id
于 2012-04-16T10:30:58.940 回答