繁体   English   中英

在续集的“ where”子句中使用联结表中的列?

[英]Using columns from junction table in “where” clause in sequelize?

我想在续集模型中执行以下查询:

SELECT Cou.country_id,cou.country_name, Sta.state_id, Sta.state_name, Dis.district_id,
Dis.district_name,Cit.city_id, Cit.city_name,Loc.location_id,Loc.location_name,Sub_Loc.sub_location_id,Sub_Loc.sub_location_name,Prop.property_id,Prop.property_name,Prop.hp_builders_id,
Bud.builders_id,Bud.builders_name
FROM hp_country Cou
INNER JOIN hp_state Sta ON Cou.country_id = Sta.hp_country_id
INNER JOIN hp_district Dis ON Sta.state_id = Dis.hp_state_id
INNER JOIN hp_city Cit ON Dis.district_id = Cit.hp_district_id
INNER JOIN hp_location Loc ON Cit.city_id = Loc.hp_city_id
INNER JOIN hp_sub_location Sub_Loc ON Loc.location_id = Sub_Loc.hp_location_id
INNER JOIN hp_property Prop ON Sub_Loc.sub_location_id=Prop.hp_sub_location_id
LEFT JOIN hp_builders Bud ON Prop.hp_builders_id=Bud.builders_id
where (Cou.country_status=1 AND Sta.state_status=1 AND Cou.country_id=1)
AND (Dis.district_name LIKE '%ky%' OR Cit.city_name LIKE '%ky%' OR Loc.location_name LIKE '%ky%' OR Sub_Loc.sub_location_name LIKE '%ky%' OR Prop.property_name LIKE '%ky%')

我的Sequelize代码无法找到hp_districts.district_status列名。但是我正在获取hp_states.states_status列。因此,如何在where子句中获取这些剩余的表列名以及如何从where条件中执行和/或从句

 hp_country.findAll({
            attributes: ['country_id', 'country_name'],
            where: {
                //main AND condition
                $and: [
                    //first joint condition
                    {
                        $and: [
                            { country_status: 1 },
                            { country_id: 1 },
          Sequelize.col("hp_states.state_status = 1")
                 ,
                Sequelize.col("hp_districts.district_status = 1")
                        ]

                    }
                ]
            },

            include: [
                {
                    model: hp_state,
                    attributes: ['state_id', 'state_name'],
                    required:true,
                    where:{
                        state_status:1
                    },
                    include:[{
                        model: hp_district,
                        attributes: ['district_id', 'district_name'],
                        where:{
                            district_status:1
                        },
                        required:true,
                        include:[{
                            model: hp_city,
                            where:{
                                city_status:1
                            }
                        }]
                    }]
                }
            ]
        })

$符号将main中的列名称换行,从而可以对include中的列进行查询

hp_country.findAll({
        attributes: ['country_id', 'country_name'],
        where: {
            country_status: 1,
            country_id: 1,
            '$States.state_status$': 1
        },
        include: [
            {
                model: hp_state,
                as: 'States',
                ...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM