Heim  >  Artikel  >  Backend-Entwicklung  >  单表多条件淘选交集60分在另外的板块,完成进去另外领分

单表多条件淘选交集60分在另外的板块,完成进去另外领分

WBOY
WBOYOriginal
2016-06-13 12:58:27912Durchsuche

单表多条件筛选交集60分在另外的板块,完成进去另外领分
这是数据表
BuyID   AttributeID   Value
1            1       单间出租
1            2          0
1            3          1
1            4        1000
2            1       整套出租
2            2        地址
2            3          1
2            4        1000
3            1       单间出租
3            2          9
3            3         10
3            4        1500

条件一:`AttributeID`=1 AND `Value`='单间出租'
条件二:`AttributeID`=4 AND `Value`>=1000 AND `Value`
我改如何搜索出条件一和条件二的交集呢?
即搜索出的结果只有一条,`BuyID`=1

尝试一:SELECT * FROM jm_user_buy_attribute WHERE (`AttributeID`=1 AND `Value`='单间出租') OR (`AttributeID`=4 AND `Value`>=1000 AND `Value` 尝试一搜索出来的结果只是满足条件一或者条件二的结果,但不能筛选出交集。

尝试二:SELECT * FROM jm_user_buy_attribute WHERE (`AttributeID`=1 AND `Value`='单间出租') OR (`AttributeID`=4 AND `Value`>=1000 AND `Value` 尝试二搜索出来的结果只是去除了相同的BuyID

尝试三:SELECT * FROM jm_user_buy_attribute as b1 left join jm_user_buy_attribute as b2 on b1.BuyID=b2.BuyID where b1.AttributeID=1 AND b1.Value='单间出租' OR b2.AttributeID=4 AND b2.Value>=1000 AND b2.Value 尝试二搜索出来的结果不正确。


http://bbs.csdn.net/topics/390325234
这是我在MYSQL板块那里发布过的!
解决问题后可以请进去领分


------解决方案--------------------
单独 select * from jm_user_buy_attribute where AttributeID=1 AND Value='单间出租'

Array
(
    [0] => Array
        (
            [BuyID] => 1
            [AttributeID] => 1
            [Value] => 单间出租
        )

    [1] => Array
        (
            [BuyID] => 3
            [AttributeID] => 1
            [Value] => 单间出租

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn