Hi, Kevin.
The following is correct syntax, with some logic corrections too. Note no quotes around the SELECT expression, and I changed the "parks" name to be fordist.
spatial_join = select jumbo.*, fordist.* from jumbo join fordist on
Geom.intersects(jumbo.GEOMETRY, fordist.GEOMETRY);
But if you want to combine linework, this isn't the right code to use. intersects() tests to see whether one geometry intersects another. So the above selects all combinations of jumbo and fordist where the features intersect each other - but it doesn't compute any new geometry.
If you want the actual intersection, you could try something like this:
spatial_join = select jumbo.* except GEOMETRY, fordist.* except GEOMETRY,
Geom.intersection( jumbo.GEOMETRY, fordist.GEOMETRY) geom
from jumbo join fordist on
Geom.intersects(jumbo.GEOMETRY, fordist.GEOMETRY);
Note the use of the EXCEPT clause to omit the geometry fields from the input tables when copying to the output - this leaves you with just one geometry column, the intersection. (EXCEPT is pretty new functionality - if you hit a problem using it, just specify the fields you want to copy explicitly)
Hope this helps...
Martin