我正在开发一个房地产项目,用户在该项目中搜索某个地区的房地产。
获取相关结果后,我想显示一些不应包含先前显示的结果的提示性结果。
表架构是:
property table:
+-----+-------------+-----------+-------------+------+----------+
| id | property | amenities | description | city | locality |
+-----+-------------+-----------+-------------+------+----------+
| 1 | House/Villa | | some desc | cit1 | loc1 |
+-----+-------------+-----------+-------------+------+----------+
| 2 | Office | .... | desc.... | cit1 | loc2 |
+-----+-------------+-----------+-------------+------+----------+
| 3 | House/Villa | ..... | desc.... | cit1 | loc3 |
+-----+-------------+-----------+-------------+------+----------+
House/Villa
我想,如果用户在city city1
and locality 搜索,loc1
那么连同可用的结果,我想建议他在同一个城市与其他locality的其他属性。
会是什么SQL
查询。我必须使用它PHP