背景
作为我的 mySQL n00b,我能想出的匹配三个表的最佳查询是在两个表之间运行比较,输出一个变量,然后使用该变量从交叉引用表中选择我的最终输出。之后,我将运行另一个查询以从我的第三个表中输出......
现在我知道有一种方法可以只用一个语句来选择我需要的所有行,但是对于我的生活,我无法将它拼凑在一起。有人可以帮我正确构建我需要的查询吗?
我必须使用来自 3 个表的信息在 php 中输出结果集,并使用单独的一个作为两个表 id 之间的实际链接。谢谢!!
表
name: table_one
-----------------------------------------------------------
id | user_id | o_id | num | likes | dislikes | .... | ... |
-----------------------------------------------------------
1 | 765 | 1 | 100 |android| cats |
2 | 765 | 2 | 100 | birds | mySQL queries |
3 | 765 | 3 | 100 | php | iPhones |
4 | 765 | 2 | 2 |oranges| bananas |
-----------------------------------------------------------
name: table_two
------------------------------------------------------------|
id |first_name| location | num_times | diploma | why |
------------------------------------------------------------|
1 | ABC | here | 0 | none | because |
2 | BCD | there | 5 | BS | no reason |
3 | Sally | nowhere | 194384 | DR | no reason |
4 | Jack | overthere| 3 | none | failure |
5 | Bob | Mars | 0 | random | in training |
-------------------------------------------------------------
name: table_agency |
---------------------------|
id | name | address |
---------------------------|
1 | A | 123x |
2 | B | 234y |
3 | C | 456z |
----------------------------
name: table_link
-----------------------------
rel_a | rel_b
---------------------------------
1 | 1 |
1 | 4 |
1 | 5 |
2 | 1 |
2 | 4 |
2 | 5 |
3 | 2 |
3 | 3 |
4 | 3 |
---------------------------------
输出/PHP
$results = $class->runQuery($query); //basically a fetchAll
foreach ($results as $result) {
echo id_table_one ($result['id']);
echo $result['name'];
echo $result['num'];
echo $result['likes'];
echo other_rows...basically table_one.*
echo all_first_names&num_times that correspond in the table link;
}
//ACTUAL Printout(echo doesn't have the ,'s):
//here should be the output:
-------------------------------------------------
1 | A | 100 | android | ABC-0/Jack-3/Bob-0|
2 | B | 100 | birds | ABC-0/Jack-3/Bob-0|
3 | C | 100 | php | BCD-5/Sally-194384|
4 | B | 2 | oranges | Sally-194384 |
----------------------------------------------
旁注
1) 将至少有 1 个与名字相关的交叉引用项目条目,最多 7 个条目(不必在查询中,但供参考)
2) 中只有 3 个条目table_agency
3) 结果集必须符合以下条件:user_id=".$variable
4)我的原始查询,或多或少......但是由于我试图提取的附加信息之间没有共性,我被迫创建一个可以使领带的函数,......这应该提供一个想法我想要达到的目标:
$query = "select
a.*,
b.name,
b.id as agency_id
from table_one a, table_agency b
where a.agency_id = b.id
and a.user_id = ".$variable;
现在新添加的first_names
实际上对应于$result['name']
5) 我可以使用嵌套foreach(
来实际输出 ...nested 数组的最终结果集 for first_name
???
6)请让查询(回复)被评论,以便我可以从你所有的辛勤工作中学习!我并不想仅仅回答一个问题,而是要学习步骤和方法!
7)提前感谢您的所有帮助......这绝对是一个令人头疼的问题。谢谢!!!