两个不同列的sql语句

时间:2015-06-19 07:26:07

标签: mysql sql

我正在尝试在两列之间进行sql查询。

TABLE_1

ID     ProductName      ProductDescription
1      Prod_1             Description_1
2      Prod_2             Description_1
3      Prod_3             Description_1
4      Prod_4             Description_1
5      Prod_5             Description_1

TABLE_2

ID       Product       Partner
1          1              21
2          2              21
3          3              21
4          1              32          
5          1              32              
6          4              21              
7          5              21
8          5              32

通过使用下面的查询,我得到的结果只是在table_2中选择的产品列表。这很好,我需要得到它,但我也想在同一查询中打印table_1中的所有值,以便以后编程我需要它。如果product_ID和ID匹配且不打印0

,则不确定是否可以生成一列打印1
$query = "SELECT a.ID, a.ProductName, b.ID, b.Product, b.Partner
FROM table_1 a
LEFT JOIN table_2 b
ON a.ID = b.Product
WHERE b.Partner = 21"

我想打印table_1中的值与table_2匹配在table_2中选择的内容。 我被困在这里任何建议表示赞赏。

3 个答案:

答案 0 :(得分:4)

正如我对您的要求一样,这个未经测试的查询应该有效:

$query = "SELECT a.ID, a.ProductName, b.ID, b.Product, b.Partnerm, case when b.id is null then 0 else 1 end
FROM table_1 a
LEFT JOIN table_2 b
ON a.ID = b.ID and b.Partner = 21"

答案 1 :(得分:1)

试试这个

$query = "SELECT a.ID, a.ProductName, b.ID, b.Product, b.Partnerm case when b.id is null then 0 else 1 end
    FROM table_1 a
    LEFT JOIN table_2 b
    ON a.ID = b.Product and b.Partner = 21"

答案 2 :(得分:1)

$query = "SELECT a.ID, a.ProductName, b.ID, b.Product, b.Partner FROM table_1 a LEFT JOIN table_2 b
ON a.ID = b.Product WHERE b.Partner = 21"

有点像这样,因为表1和表2之间的连接是ID和产品。