POINT type column: A point in the coordinate system; zero-dimensional. : Point « Geometric « SQL / MySQL






POINT type column: A point in the coordinate system; zero-dimensional.

    
mysql>
mysql> CREATE TABLE mytable (
    ->     id INT NOT NULL PRIMARY KEY,
    ->     border POLYGON NOT NULL,
    ->     ela LINESTRING,
    ->     ref POINT
    -> );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> drop table mytable;
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>
mysql>

   
    
    
    
  








Related examples in the same category

1.Find the most westerly and easterly points
2.Point type column with default value