我有查询赞
select * from prop_unit_details where property_id in (7474218,9238369,2634062,993257,8418768,4189003)
但我想在此查询中添加 AND condition ,如
select * from prop_unit_details where property_id in (7474218,9238369,2634062,993257,8418768,4189003) and bhk ='1BHK' and budget > 500000
但它不能发挥我的能力。
答案 0 :(得分:0)
只需选择您在“和”条件中使用的那两列(您提到的第一个查询中的bhk和预算),并检查bhk列是否包含1个BHK值,预算的最大值是否大于500000
例如:
SELECT bhk, budget
FROM prop_unit_details
WHERE property_id IN (7474218, 9238369, 2634062, 993257, 8418768, 4189003)