Schema
public
Owner
albenard
Descriptions
Listing de l'occupation des plants sur les palettes des robots pour le projet H2Oak_2015. 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_h2oak_2015_occupation
Definition
CREATE VIEW public.v_h2oak_2015_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 = 'H2Oak_2015'::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_h2oak_2015_occupation
IS 'Listing de l''occupation des plants sur les palettes des robots pour le projet H2Oak_2015. 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 |