आप एक सबक्वेरी का उपयोग करना चाहेंगे:
select wp_id
from (select cl.wp_id,( 3959 * acos( cos( radians(12.91841) ) * cos( radians( y(gproperty) ) ) *
cos( radians( x(gproperty)) - radians(77.58631) ) + sin( radians(12.91841) ) *
sin( radians(y(gproperty) ) ) ) ) AS distance
from db1.geofeature gf join
db2.c_loc cl
on gf.o_type = 256 and cl.c_info_id = 146 and gf.o_id = cl.wp_id
) t
where distance < 10
order by distance
limit 10;
ध्यान दें कि मैंने स्पष्ट जॉइन का उपयोग करने के लिए ज्वाइन सिंटैक्स को भी ठीक किया है।