ジオメトリタイプに対して空間情報カラムを作成する標準的な方法が
MySQL に用意されています(たとえば CREATE
TABLE
または ALTER TABLE
を使用)。
空間情報カラムは現在、MyISAM
テーブルに対してのみサポートされています。
CREATE TABLE
ステートメントを使用し、空間情報カラムのあるテーブルを作成する。
mysql> CREATE TABLE geom (g GEOMETRY);
Query OK, 0 rows affected (0.02 sec)
ALTER TABLE
ステートメントを使用し、既存テーブルに空間情報カラムを追加したり、既存テーブルの空間情報カラムを破棄したりする。
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
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.