ST_M — Returns the M coordinate of a Point.
float ST_M(geometry  a_point);
Restituisce la coordinata M del punto, o NULL se non disponibile. L'input deve essere un punto.
                 
               | 
              |
| 
                 This is not (yet) part of the OGC spec, but is listed here to complete the point coordinate extractor function list.  | 
            
            
 Questo metodo implementa le OGC Simple Features Implementation Specification for SQL 1.1. 
            
 Questo metodo implementa la specifica SQL/MM. 
            
 Questa funzione supporta il 3d e non distrugge gli z-index. 
SELECT ST_M(ST_GeomFromEWKT('POINT(1 2 3 4)'));
 st_m
------
        4
(1 row)