例: ST_SphericalDistance - Teradata Database - Teradata Vantage NewSQL Engine

Teradata Vantage™ 地理空間データ型

Product
Teradata Database
Teradata Vantage NewSQL Engine
Release Number
16.20
Published
2019年3月
Language
日本語
Last Update
2019-10-29
dita:mapPath
ja-JP/swn1512082023009.ditamap
dita:ditavalPath
ja-JP/swn1512082023009.ditaval
dita:id
B035-1181
Product Category
Software
Teradata Vantage
   CREATE TABLE sample_points1 (skey1 INTEGER, point1 ST_Geometry);
   CREATE TABLE sample_points2 (skey2 INTEGER, point2 ST_Geometry);

   INSERT INTO sample_points1 VALUES (101, 'POINT(10 20)');
   INSERT INTO sample_points1 VALUES (102, 'POINT(10 50)');

   INSERT INTO sample_points2 VALUES (1001, 'POINT(20 30)');
   INSERT INTO sample_points2 VALUES (1002, 'POINT(20 40)');

   SELECT skey1, skey2, point1.ST_SphericalDistance(point2)
   FROM sample_points1, sample_points2
   ORDER BY skey1;