a1amattyj Posted June 12, 2012 Share Posted June 12, 2012 Hello, The following query: SELECT * FROM handsets, deals, tariffs WHERE handsets.handet_numeric=deals.handset AND tariffs.tarrif_numericid = deals.tarrif AND deals.gift > 0 AND deals.cost_of_phone <= '0' AND tariffs.cost_month != 0.00 ORDER BY handsets.launch_date DESC LIMIT 8; I would like to select only distinct rows with respect to deals.handset (no 2 results from this query will spit out the same deals.handset value). How would I go about this? (deals.handset is indexed, and is an integer value) Thank you so much, Matt Quote Link to comment Share on other sites More sharing options...
Jessica Posted June 12, 2012 Share Posted June 12, 2012 SELECT DISTINCT deals.handset FROM .... the rest of your query. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.