Point type column with default value
mysql>
mysql> CREATE TABLE cities (
-> id int(11) NOT NULL,
-> pt point NOT NULL default ''
-> );
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql>
mysql>
mysql> drop table cities;
Query OK, 0 rows affected (0.00 sec)
Related examples in the same category