Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table perfo_moyenne_geno
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idgeno |
integer |
|
|
21-12-2007 : not null |
||||
|
|
annee |
integer |
|
|
|
|
|
|
|
mois |
integer |
|
|
|
|
|
|
|
purete_spe |
integer |
|
|
|
|
|
|
|
tiges_ha |
integer |
|
|
|
|
|
|
|
surface_terriere |
numeric |
|
|
|
|
|
|
|
hauteur_moyenne |
numeric |
|
|
|
|
|
|
|
diametre_moyen |
numeric |
|
|
|
|
|
|
|
hauteur |
numeric |
|
|
|
|
|
|
|
diametre |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
age_mesure |
integer |
|
|
|
|
|
|
|
age_peupl |
integer |
|
|
|
|
|
|
|
recup_nom_geno |
varchar(50) |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idgeno |
idgeno |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table perfo_moyenne_geno
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idgeno |
|
Triggers
There are no triggers for table perfo_moyenne_geno
Rules
There are no rules for table perfo_moyenne_geno
Policies
There are no policies for table perfo_moyenne_geno
Referenced
There are no tables referenced by table perfo_moyenne_geno
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
2364 |
Pages |
22 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.perfo_moyenne_geno (
idgeno INTEGER NOT NULL,
annee INTEGER,
mois INTEGER,
purete_spe INTEGER,
tiges_ha INTEGER,
surface_terriere NUMERIC,
hauteur_moyenne NUMERIC,
diametre_moyen NUMERIC,
hauteur NUMERIC,
diametre NUMERIC,
commentaire TEXT,
age_mesure INTEGER,
age_peupl INTEGER,
recup_nom_geno VARCHAR(50),
CONSTRAINT perfo_moyenne_geno_pkey PRIMARY KEY(idgeno),
CONSTRAINT fk_perfo_moyenne_geno_genotype FOREIGN KEY (idgeno)
REFERENCES public.genotype(idgeno)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON COLUMN public.perfo_moyenne_geno.idgeno
IS '21-12-2007 : not null';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |