I have some shapes in my db stored as geometry polygon and I want to check:
1- They don't overlap eachother.
2- No problem if having a shared edge or corner.
I tried STIntersects and it works fine for rule 1 but it returns true for neighbor shapes which shared a corner or edge.
What should I do to achieve my exact result?