I would like to do a spatial join between points and polygons with st_geometry this is what I have come up with:
select sp.OBJECTID, p.parcel_num from servicepoint_evw sp
join parcels p
on (sde.st_intersects(sp.shape, p.shape)) = 1
This does appear to work but it is supper slow... I took over a minute to return one row.