Mysql: ST_Contains with borders to detect if multipolygon contains point
问题 I use mysql spatial functions. I have to understand if points lies withing multipolygon. Initially I used MBRContains but it works in a strange way, so I faced the following error: Mysql function MBRContains is not accurate My next step was switching to the functions ST_Contains . But I found out that if I use polygon(from multipolygon) vertex as argument - function returns false but I want to unclude all multipolygon borders. P.S. I found that where are function: ST_Touches(g1, g2) Two