MBR Casts | Geospatial Data Types | Teradata Vantage - Casts - Advanced SQL Engine - Teradata Database

Geospatial Data Types

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-27
dita:mapPath
ufo1590694251930.ditamap
dita:ditavalPath
ufo1590694251930.ditaval
dita:id
B035-1181
lifecycle
previous
Product Category
Teradata Vantageā„¢

Vantage implements cast functionality that allows data type conversions between VARCHAR and MBR types. To convert a VARCHAR type to an MBR type, the VARCHAR must use the following format:

(xmin, ymin, xmax, ymax)

where white space can appear anywhere.

Consider the following table definitions.

CREATE TABLE sample_MBRs (skey INTEGER, shape_mbr MBR);
CREATE TABLE sample_data (mbr_data VARCHAR(256));

This example performs MBR to VARCHAR data type conversion:

INSERT INTO sample_data
SELECT CAST(shape_mbr as VARCHAR(256))
FROM sample_MBRs;