pggeodb.nancy.inra.fr/db_toff - db_toff on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

View: v_tree_caracteristiques_abiotiques

 

 

Schema

public

 

Owner

albenard

 

Descriptions

vue permettant de créer récursivement l'arbre des caractéristiques dites abiotiques (parenté avec 'Abiotic environments.' sauf la famille 'Feeding location'.

 

Fields

Name

Data type

Description

libellefamille

varchar(128)

 

chemin

text

 

car_nom

varchar(64)

 

car_id

integer

 

 

Rules

Name

Event

Instead

Condition

Description

_RETURN

SELECT

 

 

 

Indices

There are no indices for table v_tree_caracteristiques_abiotiques

 

Definition

CREATE VIEW public.v_tree_caracteristiques_abiotiques (
   libellefamille,
   chemin,
   car_nom,
   car_id)
AS
SELECT
v_tree_familles_caracteristiques.libelle AS libellefamille,
   v_tree_familles_caracteristiques.chemin,
   tr_caracteristique_car.car_nom,
   tr_caracteristique_car.car_id
FROM v_tree_familles_caracteristiques
    JOIN tr_caracteristique_car ON v_tree_familles_caracteristiques.id_famille
        = tr_caracteristique_car.car_fca_id
WHERE v_tree_familles_caracteristiques.chemin ~~ 'Abiotic environments%'::text
ORDER BY v_tree_familles_caracteristiques.chemin, tr_caracteristique_car.car_nom;

COMMENT ON VIEW public.v_tree_caracteristiques_abiotiques
IS 'vue permettant de créer récursivement l''arbre des caractéristiques dites abiotiques (parenté avec ''Abiotic environments.'' sauf la famille ''Feeding location''.';

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