db.silva.inrae.fr/db_biljou_param - db_biljou_param on db.silva.inrae.fr
Previous topic Chapter index Next topic

View: v_centroid_safran_france_vb

 

 

Schema

public

 

Owner

albenard

 

Descriptions

Basé sur la vue v_centroid_safran cette vue filtre les point qui sont référencé comme en France selon Vincent Badeau (coloone france_vb de la table reference_safran)

 

Columns

Name

Data type

Description

cle

double precision

 

x

double precision

 

y

double precision

 

tuile

integer

 

grillex

integer

 

grilley

integer

 

systeme

integer

 

 

Rules

Name

Event

Instead

Condition

Description

_RETURN

SELECT

 

 

 

Indices

There are no indices for table v_centroid_safran_france_vb

 

Definition

CREATE VIEW public.v_centroid_safran_france_vb (
   cle,
   x,
   y,
   tuile,
   grillex,
   grilley,
   systeme)
AS
SELECT v_centroid_safran.cle,
   v_centroid_safran.x,
   v_centroid_safran.y,
   v_centroid_safran.tuile,
   v_centroid_safran.grillex,
   v_centroid_safran.grilley,
   v_centroid_safran.systeme
FROM v_centroid_safran
    JOIN reference_safran ON v_centroid_safran.cle =
        reference_safran.saf_id_maille::double precision
WHERE reference_safran.saf_france_vb = true;

COMMENT ON VIEW public.v_centroid_safran_france_vb
IS 'Basé sur la vue v_centroid_safran cette vue filtre les point qui sont référencé comme en France selon Vincent Badeau (coloone france_vb de la table reference_safran)';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23
Previous topic Chapter index Next topic