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 Link to comment https://forums.phpfreaks.com/topic/264051-distinct-value-on-query/ 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. Link to comment https://forums.phpfreaks.com/topic/264051-distinct-value-on-query/#findComment-1353205 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.