I have the same MySQL DB on my Local and Server. I exported DB file on my local and imported it on Server.
My Local MySQL Version is MariaDB 10.4 and Server MySQL Version is MySQL 8.0
I'm running this query on both to get results.
SELECT * FROM district WHERE ST_Contains(POLYGON, ST_GeomFromText('POINT(-83.8754503501234 35.932752462484174)'));
On my local, it returns 8 results which are correct but on server, it's returning only 6 results and it's missing 2 rows.
I'm not sure what the issue is but I guess it's related to either MySQL Version or configuration?
Thank you!