As i ask before where col in() clause for geometry column in mysql
i have a lot of Point in my table and i want to find multiple points from my table by one query, someone suggest that use MBRWithin() or MBRContains() geospatial functions in MySQL, but i don't know how to use this functions with multiple points like this Where
in()
query :
SELECT id, asText(latlng) FROM points WHERE asText(latlng) in ('POINT(35.80684 51.427820000000004)','POINT(35.72343 51.303200000000004)')
can help me to select with multiple points?
thanks