Schema
Owner
albenard
Tablespace
(default)
Descriptions
les champs nb_gr_pleine, nb_gr_vide, nb_par_cone, pourc_gr_pleine sont vides par erreur. Les données existentent dans toutes_fam.xls. Il faudrait faire des fusions avec toutes_graines.xls et tous_géno.xls
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlot_gr |
integer |
|
|
|
||||
|
idlc_couleur_gr |
integer |
|
|
|
|
|
|
|
|
poids_1000_gr |
numeric |
|
|
|
|
|
|
|
teneur_eau |
integer |
|
|
|
|
|
|
|
facteur_germination |
integer |
|
|
|
|
|
|
|
purete_gr |
integer |
|
|
|
|
|
|
|
purete_espece |
integer |
|
|
|
|
|
|
|
nb_gr_pleine |
integer |
|
|
|
|
|
|
|
nb_gr_vide |
integer |
|
|
|
|
|
|
|
nb_par_cone |
integer |
|
|
|
|
|
|
|
pourc_gr_pleine |
integer |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
recup_ch |
varchar(50) |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlot_gr |
idlot_gr |
No Action |
No Action |
|
Immediate |
|
||
idlc_couleur_gr |
id_lc |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table caracteristique_graine
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_gr |
|
Triggers
There are no triggers for table caracteristique_graine
Rules
There are no rules for table caracteristique_graine
Policies
There are no policies for table caracteristique_graine
Referenced
There are no tables referenced by table caracteristique_graine
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
9691 |
Pages |
73 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.caracteristique_graine (
idlot_gr INTEGER NOT NULL,
idlc_couleur_gr INTEGER,
poids_1000_gr NUMERIC,
teneur_eau INTEGER,
facteur_germination INTEGER,
purete_gr INTEGER,
purete_espece INTEGER,
nb_gr_pleine INTEGER,
nb_gr_vide INTEGER,
nb_par_cone INTEGER,
pourc_gr_pleine INTEGER,
commentaire TEXT,
recup_ch VARCHAR(50),
CONSTRAINT caracteristique_graine_pkey PRIMARY KEY(idlot_gr),
CONSTRAINT fk_caracteristique_graine FOREIGN KEY (idlot_gr)
REFERENCES public.graine(idlot_gr)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_couleur_gr FOREIGN KEY (idlc_couleur_gr)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON TABLE public.caracteristique_graine
IS 'les champs nb_gr_pleine, nb_gr_vide, nb_par_cone, pourc_gr_pleine sont vides par erreur. Les données existentent dans toutes_fam.xls. Il faudrait faire des fusions avec toutes_graines.xls et tous_géno.xls';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |