SQL Server : spatial query result are not showing -


select distinct lu.objectid land_use_evw lu not exists (select land_use_evw.objectid                    land_use_evw, municipalities_evw                    land_use_evw.shape.stcentroid().stintersects(municipalities_evw.shape) = 1                  ) 

i trying result opposite of below

select land_use_evw.objectid      land_use_evw, municipalities_evw         land_use_evw.shape.stcentroid().stintersects(municipalities_evw.shape) = 1 

= 0 didn't work therefore i'm trying come other idea.

but result shows nothing. no errors or warning.

found answer

where not exists (select land_use_evw.objectid  land_use_evw, municipalities_evw  

removing land_use_evw from land_use_evw solve problem


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -