O MySQL fornece um modo padrão de criar colunas espaciais para
tipos de geometria, por exemplo, com CREATE
TABLE
ou ALTER TABLE
. Atualmente,
colunas espaciais são suportadas apenas por tabelas
MyISAM
.
CREATE TABLE
Use a instrução CREATE TABLE para criar uma tabela com uma coluna espacial:
mysql>CREATE TABLE geom (g GEOMETRY);
Query OK, 0 rows affected (0.02 sec) mysql>
ALTER TABLE
Use a instrução ALTER TABLE para adicionar ou deletar uma coluna espacial a ou de uma tabela existente:
mysql>ALTER TABLE geom ADD pt POINT;
Query OK, 0 rows affected (0.00 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql>ALTER TABLE geom DROP pt;
Query OK, 0 rows affected (0.00 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql>
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.