Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table meteo_lieu
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlieu |
integer |
|
|
|
||||
|
idlc_climat |
integer |
|
|
|
|
|
|
|
|
annee_ref1 |
integer |
|
|
|
|
|
|
|
annee_ref2 |
integer |
|
|
|
|
|
|
|
nb_jour_gel_annuel |
integer |
|
|
|
|
|
|
|
pluviosite_annuel |
integer |
|
|
|
|
|
|
|
pluviosite_printemps |
integer |
|
|
|
|
|
|
|
pluviosite_ete |
integer |
|
|
|
|
|
|
|
temp_moyenne |
numeric |
|
|
|
|
|
|
|
temp_maxi |
numeric |
|
|
|
|
|
|
|
temp_mini |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
recup_nom_lieu |
varchar(50) |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlc_climat |
id_lc |
No Action |
No Action |
|
Immediate |
|
||
idlieu |
idlieu |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table meteo_lieu
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlieu |
|
Triggers
There are no triggers for table meteo_lieu
Rules
There are no rules for table meteo_lieu
Policies
There are no policies for table meteo_lieu
Referenced
There are no tables referenced by table meteo_lieu
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
443 |
Pages |
5 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.meteo_lieu (
idlieu INTEGER NOT NULL,
idlc_climat INTEGER,
annee_ref1 INTEGER,
annee_ref2 INTEGER,
nb_jour_gel_annuel INTEGER,
pluviosite_annuel INTEGER,
pluviosite_printemps INTEGER,
pluviosite_ete INTEGER,
temp_moyenne NUMERIC,
temp_maxi NUMERIC,
temp_mini NUMERIC,
commentaire TEXT,
recup_nom_lieu VARCHAR(50),
CONSTRAINT meteo_lieu_pkey PRIMARY KEY(idlieu),
CONSTRAINT fk_climat FOREIGN KEY (idlc_climat)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_meteo_lieu_lieu FOREIGN KEY (idlieu)
REFERENCES public.lieu(idlieu)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |