Update Scroll to bottem for sql Code and output I recently started working on an apartment database. The database contains 2 tables
Table a "property" stores information about apartment complexes basic (contact info and photos). It is referenced by the column propid
Table b "floorplans" stores information about individual units for rent. pricing information, square footage, and apartment type. The floorplan table also is referenced by the column propid to allow us to link the 2 tables together. It also has its own unique identifier but it is unused.
There are typically 5-10 floorplans per complex.
I am creating a frontend search interface for our customers on our website. I need the ability to search for a property that has floorplans that meet the search criteria. but when performing the join statement I noticed it kept giving me a list with the same property in it each time one of its floorplans were found to match the search criteria.
I did some research on the subject. Most common answer use SELECT DISTINCT.
The problem is that I need more then just the propid to be returned as a result.
I tried doing something like this:
SELECT DISTINCT (p.propid), p.*, f.* FROM property AS p
LEFT JOIN floorplans AS f ON p.propid = f.propid
WHERE f.pricespecial BETWEEN [min_price] AND [max_price];
[min_price] and [max_price] are provided by the user.
The intended result would be a list of all properties that have floorplans that meet all users search criteria. But I do not want the same property returned for every single matching unit.
When I run this query I still get duplicate properties
In the past I just simply ran a filter script on the xml feed containing the data. The script would determine the highest and lowest price units in the givin property and add those values to 2 newly created columns on the property table price_min, and price_max. until now this was good enough but the company has been pushing for more accurate search results.
The only other option I see is to just run the query with only the DISTINCT propid's returned. Then run a second query to retrieve the actual data.
I.E.
$sql = "SELECT DISTINCT p.propid FROM property as f" .
"LEFT JOIN floorplans AS f" .
"WHERE f.price BETWEEN " . $_REQUEST['price_min'] . " AND " . $_REQUEST['price_max'] . "
EDIT**
some sample output using a newly revised sql statment.
propid name pricespecial
4230A 2222 Smith Street $1225-1450
4230A 2222 Smith Street $1895-2045
4230A 2222 Smith Street $2220
4679A City Place Midtown $1230-1599
4679A City Place Midtown $1595-1650
4679A City Place Midtown $1699-2195
4572A Gables Memorial Hills $1308-2159
4572A Gables Memorial Hills $2050-2693
4606A Venue Museum District $1535-1930
4606A Venue Museum District $1980-2550
I was having troubles posting this as a comment so I just edited my question.
f.*in yourSELECT, but it's not clear to me whether you want those values to be returned. Do you? – hvd Mar 9 '12 at 20:37price_maxto1; DROP DATABASE; --. – hvd Mar 9 '12 at 20:53