ST_Raster.hasStats
Définition
La fonction ST_Raster.hasStats indique si l'objet ST_Raster possède ou non des statistiques d'images calculées. Elle renvoie 1 s'il existe des statistiques et 0 dans le cas contraire.
Syntaxe
Oracle
hasStats()
PostgreSQL
hasStats(raster IN ST_RASTER)
SQL Server
hasStats()
Renvoie
Oracle
Nombre
PostgreSQL
Booléen
SQL Server
Entier
Paramètres
Aucun
Exemple
La requête suivante indique si les statistiques d'images sont disponibles ou non pour chaque raster de la table.
Oracle
SELECT t.image.raster_id, t.image.hasStats()
FROM FOO t;
T.IMAGE.RASTER_ID T.IMAGE.HASSTATS()
--------------- ------------------
2 1
3 0
23 0
24 0
42 0
43 0
PostgreSQL
SELECT raster_id(image), hasStats(image)
FROM foo;
RASTER_ID(IMAGE) HASSTATS(IMAGE)
--------------- ---------------
2 1
3 0
23 0
24 0
42 0
43 0
SQL Server
SELECT image.raster_id, image.hasStats()
FROM foo;
IMAGE.RASTER_ID IMAGE.HASSTATS()
--------------- ----------------
2 1
3 0
23 0
24 0
42 0
43 0
5/10/2014