Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  MySQL-Specific Functions That Create Geometry Values

14.16.5 MySQL 中创建几何值的特定函数

MySQL 提供了一组有用的非标准函数来创建几何值。以下所述的函数是 MySQL 对 OpenGIS 规范的扩展。

这些函数从 WKB 值或几何对象作为参数生产几何对象。如果任何参数不是合法的 WKB 或几何表示形式的合法对象类型,返回值为 NULL

例如,您可以将 Point() 函数的返回值直接插入到 POINT 列中:

INSERT INTO t1 (pt_col) VALUES(Point(1,2));