How to find if a point or polygon is inside another polygon using oracle spatial SQL query
Here is the script;
I have a table (STATE_TABLE) that contains a spatial type (sdo_geometry) that is a polygon (like state), I have another table (UNIVERSITY_TABLE) that contains spatial data (sdo_geometry) (point / polygon) that contains universities ;
Now, how to find out if the selected university is selected in this state using the SQL select statement.
First of all, I want to find the existence of the given object (s) in the geofence.
Thanks.
source share