DECLARE @point GEOGRAPHY;
DECLARE @polygon GEOGRAPHY;
SET @point = geography::Parse('POINT(49.274138 73.098562)');
SET @polygon = geography::Parse('POLYGON((47.0 90.0, 47.0 73.0, 50.0 52.0, 50.0 54.0, 47.0 90.0))');
SELECT @polygon.STIntersects(@point);
Labels: geography, geometry, spatial, sql server 2008