I have a question regarding spatial data and u-sql. I have a input with polygons and input with points and i want to combine these so that I know in what polygon the point belongs to.
In T sql I would do a left outer join with something like polygon.STintersect(point)= 1
But I suppose that won’t work in u sql. So how can I combine these two inputs?