Hi,
I was lokking at this query:
DECLARE
@geom1 geometry
SET
@geom1 =
geometry::STPolyFromText('POLYGON((2 0, 0 2, 2 4, 4 4, 6 2, 4 0, 2 0))',0)
SELECT
@geom1
The query is working fine. But I'm not getting what the parameters are for in
POLYGON((2 0, 0 2, 2 4, 4 4, 6 2, 4 0, 2 0))',0)
Can any body please explain the same?
Thanks,
Santosh