English 中文(简体)
SQL SQL 查询与许多关系的关系
原标题:SQL Query for a one to many relationship

我有两个表格,即表A和表B。 表A中的每个记录都有许多记录;因此,表A和表B之间存在一至多种关系。我想进行查询,以便表A返回的每行都从表B返回。据我理解,我需要使用一个 INNER Join - 但是,我如何通过说,PHP访问所有返回的行?

$sql = "Select A.ID, B.Name * From A INNER JOIN B ON A.ID = B.ID";
A.ID  |  B.fName        |  B.lName
1          nameone         lnameone
1          nametwo         lnametwo
2          namethree       lnamethree
4          namefour        lnamefour

现在我有了上述结果, 我想使用 PHP 来循环浏览 < code> B. Name 的所有值, 仅对单个 < code> A. ID 一次。 因此, 我想要的结果看起来像 :

1.
nameOne lNameOne
nameTwo lnametwo

2. namethree lNamethree

4. nameFour lNameFour

基本上,我试图将查询结果按身份识别号分组在表A中。

我很感激你的帮助!

谢谢

埃文·埃文

最佳回答

你可以在谷歌上搜索“php从数据库中获取” 并使用一些正常的阵列预处理, 但我担心你发现的建议可能不理想。

$pdo = new PDO( mysql:host=host;dbname=dbname ,  user ,  pass );
$result = $pdo->query(<<<SQL
   SELECT
      ID,
      Name
   FROM
      A
      -- Alternative to `JOIN B USING(ID)` or `JOIN B ON (A.ID = B.ID)
      NATURAL JOIN B
SQL
);
$a = array();
while ($row = $result->fetch()) {
   if (!isset($a[$row[ ID ]]) {
      $a[$row[ ID ]] = array();
   }
   $a[$row[ ID ]][] = $row[ Name ];
}

您也可以 GROUP by ID > 和 GROUP_CONCAT 在 PHP 中被命名为 exlode , 以跳过手动阵列创建并减少一些迭代(尽管在这种情况下SQL会做更多工作)。

问题回答

在 SQL 查询中添加简单的 < code> ORDER by A. ID 可能会在“ 分组” 项目上达到相当远的距离。 在不知道您想要用“ 分组” 做什么的情况下, 很难给出更详细的答案 。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...