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

View: v_watbio_tremula2014_occupation

 

 

Schema

public

 

Owner

albenard

 

Descriptions

Listing de l'occupation des plants sur les palettes des robots pour le projet watbio_tremula2014. Les informations sont triées par robot / palette puis période

 

Fields

Name

Data type

Description

pjt_nom

varchar(20)

 

plt_numero

varchar(12)

 

rob_nom

varchar(20)

 

emp_palette

integer

 

emp_periode

pg_catalog.tsrange

 

emp_sortie_definitive

boolean

 

 

Rules

Name

Event

Instead

Condition

Description

_RETURN

SELECT

 

 

 

Indices

There are no indices for table v_watbio_tremula2014_occupation

 

Definition

CREATE VIEW public.v_watbio_tremula2014_occupation (
   pjt_nom,
   plt_numero,
   rob_nom,
   emp_palette,
   emp_periode,
   emp_sortie_definitive)
AS
SELECT
t_projet_pjt.pjt_nom,
   t_plant_plt.plt_numero,
   tr_robot_rob.rob_nom,
   tj_emplacement_plt_rob_emp.emp_palette,
   tj_emplacement_plt_rob_emp.emp_periode,
   tj_emplacement_plt_rob_emp.emp_sortie_definitive
FROM t_plant_plt
    JOIN t_projet_pjt ON t_plant_plt.plt_pjt_id = t_projet_pjt.pjt_id
    JOIN tj_emplacement_plt_rob_emp ON t_plant_plt.plt_id =
        tj_emplacement_plt_rob_emp.emp_plt_id
    JOIN tr_robot_rob ON tj_emplacement_plt_rob_emp.emp_rob_id = tr_robot_rob.rob_id
WHERE t_projet_pjt.pjt_nom::text = 'Watbio_Tremula2014'::text
ORDER BY tr_robot_rob.rob_id, tj_emplacement_plt_rob_emp.emp_palette,
   tj_emplacement_plt_rob_emp.emp_periode;

COMMENT ON VIEW public.v_watbio_tremula2014_occupation
IS 'Listing de l''occupation des plants sur les palettes des robots pour le projet watbio_tremula2014. Les informations sont triées par robot / palette puis période';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic