php - php如何使用条件获取多个表列值

标签 php mysql join

首先,感谢您的伙伴花时间阅读本文。

现在我有两个表,数据如下:

表名:table1

+-----------+----------+---------------------------+
| tid       | area     | Subject                   |
+-----------+----------+---------------------------+
| 1         | US       | The one restaurant        |
| 2         | US       | Landmark hotel            |
| 3         | US       | Tholo restaurant          |
| 4         | CA       | GE bar                    |
+-----------+----------+---------------------------+

表名:table2

+--------+---------+---------------------------+---------------+
| tid    | area    | Value                     | optionid      |
+--------+---------+---------------------------+---------------+
| 1      | US      | the one restaurant desc   | restaurant    |
| 1      | US      | the one rest. contact     | recontact     |
| 1      | US      | the one rest. address     | readdress     |
| 2      | US      | landmark hotel desc       | hotel         |
| 2      | US      | landmark hotel.contact    | hocontact     |
| 2      | US      | landmark hotel.address    | hoaddress     |
| 3      | US      | Tholo restaurant.desc     | restaurant    |
| 3      | US      | Tholo restaurant.contact  | recontact     |
| 3      | US      | Tholo restaurant.address  | readdress     |
| 4      | CA      | GE bar.desc               | bar           |
| 4      | CA      | GE bar.contact            | bacontact     |
| 4      | CA      | GE bar.address            | baaddress     |
+--------+---------+---------------------------+---------------+

当用户查询区域=美国时,我想显示如下数据

|tid  | Subject              | description             | contact                     |    Address               |area|
+-----+----------------------+-------------------------+-----------------------------+--------------------------+----+
| 1   | The one restaurant   | the one restaurant desc | the one rest.contact        | the one rest.address     | US |
| 2   | Landmark hotel       | landmark hotel desc     | landmark hotel contact      | landmark.address         | US |
| 3   | Tholo restaurant     | Tholo restaurant.desc   | Tholo restaurant.contact    | Thoro restaurant.address | US |

现在我只能成功alias和union,不能加入subject,我的代码如下:

$query = mysql_query("SELECT value AS restaurant_description FROM table2 WHERE fid = US AND optionid = restaurant UNION SELECT value AS restaurant_contact FROM table2 WHERE fid = US AND optionid = recontact UNION SELECT value AS restaurant_address FROM table2 WHERE fid = US AND optionid = readdress UNION SELECT value AS hotel FROM table2 WHERE fid = US AND optionid = hotel UNION SELECT value AS hotel_description FROM table2 WHERE fid = US AND optionid = hotel UNION SELECT value AS hotel_contact FROM table2 WHERE fid = US AND optionid = hocontact UNION SELECT value AS hotel_address FROM table2 WHERE fid = US AND optionid = hoaddress UNION SELECT value AS bar_description FROM table2 WHERE fid = US AND optionid = bar UNION SELECT value AS bar_contact FROM table2 WHERE fid = US AND optionid = bacontact UNION SELECT value AS bar_address FROM table2 WHERE fid = US AND optionid = baaddress"); 

    while($row = mysql_fetch_array($query)) {
        echo $row['hotel_description'];
        echo $row['hotel_lat'];
        echo $row['subject'];
}

我尝试了下面的代码,但它无法显示我需要的数据。

$query = mysql_query("SELECT value AS restaurant_description FROM table2 WHERE fid = US AND optionid = restaurant UNION SELECT value AS restaurant_contact FROM table2 WHERE fid = US AND optionid = recontact UNION SELECT value AS restaurant_address FROM table2 WHERE fid = US AND optionid = readdress UNION SELECT value AS hotel FROM table2 WHERE fid = US AND optionid = hotel UNION SELECT value AS hotel_description FROM table2 WHERE fid = US AND optionid = hotel UNION SELECT value AS hotel_contact FROM table2 WHERE fid = US AND optionid = hocontact UNION SELECT value AS hotel_address FROM table2 WHERE fid = US AND optionid = hoaddress UNION SELECT value AS bar_description FROM table2 WHERE fid = US AND optionid = bar UNION SELECT value AS bar_contact FROM table2 WHERE fid = US AND optionid = bacontact UNION SELECT value AS bar_address FROM table2 WHERE fid = US AND optionid = baaddress UNION SELECT subject FROM table1 WHERE fid = US AND table1.tid = table2.tid"); 

最佳答案

这更像是创建 pivot 表。如果您只需要 recontactrestaurantreaddress 值,您可以使用以下技术。

select
t1.tid,
t1.subject,
t2.area,
max(case when t2.optionid = 'restaurant' then t2.Value end) as `description`,
max(case when t2.optionid = 'recontact' then t2.Value end ) as `contact`,
max(case when t2.optionid = 'readdress' then t2.Value end ) as `Address`
from table1 t1
join table2 t2 on t1.tid = t2.tid
group by t1.tid;

关于php - php如何使用条件获取多个表列值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29427335/

相关文章:

php - 使用php清除文本文件的内容

mysql - Moodle 上不区分大小写的搜索

php - 当 id 被转换为整数而不是字符串时,mysqli 准备语句更新查询失败

mysql连接别名同一个表

mysql - 连接和计算问题

javascript - 强制串行 mySQL 插入(或以更好的方式重建表)

php - 将动态数据传递给引导模式

php - MySQL WHERE 的两个条件

mysql转储: insufficient privileges to show create function 'function name'

c# - 连接表时 Linq Lambda 连接中断