I would like to know if it is possible to retrive one single random row from search results. I mean I have query like this:
SELECT mp.name,mp.icon,mp.id,mp.wspx,mp.wspy,ms.icon FROM maps_points as mp JOIN maps_section as ms ON(ms.id = mp.section)
I would like to get one random row from results generated from this query. Is that possible with one mysql query or should I just get all results and get this one random in PHP?