db_venik
Previous topic Chapter index Next topic

Table: conserv_pollen

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

HVS : table creee a partir de la table recolte_pollen pour etre utilisable par tous les types de pollens (simple ou en melange). Aucune contraine sur les champs autres que idlot_pollen

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

idlot_pollen

integer

 

 

 

 

 

annee_conservation

integer

 

 

 

 

 

 

mois_conservation

integer

 

 

 

 

 

 

 

teneur_eau

numeric

 

 

 

 

 

 

 

faculte_germinative

numeric

 

 

 

 

 

 

 

conductivite

numeric

 

 

 

 

 

 

 

respiration

numeric

 

 

 

 

 

 

 

commentaire

text

 

 

 

 

 

 

 

recup_pollen

varchar(50)

 

 

 

 

 

 

 

qte_conserv

numeric

 

 

 

 

28-06-07. Ajout. reprend la valeur de recu ou extrait

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

$1

idlot_pollen

public.pollen

idlot_pollen

Restrict

Restrict

 

Immediate

 

 

Check Constraints

There are no check constraints for table conserv_pollen

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

conserv_pollen_pkey

btree

 

idlot_pollen

 

 

Triggers

There are no triggers for table conserv_pollen

 

Rules

There are no rules for table conserv_pollen

 

Policies

There are no policies for table conserv_pollen

 

Referenced

There are no tables referenced by table conserv_pollen

 

Properties

Property

Value

Inherited From

 

Rows

2367

Pages

23

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.conserv_pollen (
 idlot_pollen INTEGER NOT NULL,
 annee_conservation INTEGER NOT NULL,
 mois_conservation INTEGER,
 teneur_eau NUMERIC,
 faculte_germinative NUMERIC,
 conductivite NUMERIC,
 respiration NUMERIC,
 commentaire TEXT,
 recup_pollen VARCHAR(50),
 qte_conserv NUMERIC,
 CONSTRAINT conserv_pollen_pkey PRIMARY KEY(idlot_pollen),
 FOREIGN KEY (idlot_pollen)
   REFERENCES public.pollen(idlot_pollen)
   ON DELETE RESTRICT
   ON UPDATE RESTRICT
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.conserv_pollen
IS 'HVS : table creee a partir de la table recolte_pollen  pour etre utilisable par tous les types de pollens (simple ou en melange). Aucune contraine sur les champs autres que idlot_pollen';

COMMENT ON COLUMN public.conserv_pollen.qte_conserv
IS '28-06-07. Ajout. reprend la valeur de recu ou extrait';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com)
Previous topic Chapter index Next topic