1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
-- ==============================================================
-- GNUmed database schema change script
--
-- License: GPL v2 or later
-- Author: Karsten Hilbert
--
-- ==============================================================
-- $Id: v10-blobs-v_latest_mugshot.sql,v 1.1 2008-12-01 21:46:34 ncq Exp $
-- $Revision: 1.1 $
-- --------------------------------------------------------------
\set ON_ERROR_STOP 1
-- --------------------------------------------------------------
-- remember to handle dependant objects possibly dropped by CASCADE
\unset ON_ERROR_STOP
drop view blobs.v_latest_mugshot cascade;
\set ON_ERROR_STOP 1
create view blobs.v_latest_mugshot as
select
vo4d.pk_patient as pk_patient,
vo4d.doc_comment as doc_comment,
vo4d.date_generated as date_taken,
vo4d.ext_ref as ext_ref,
vo4d.seq_idx as obj_seq_idx,
vo4d.obj_comment as obj_comment,
vo4d.pk_doc as pk_doc,
vo4d.pk_obj as pk_obj,
bdo.data as image
from
blobs.v_obj4doc_no_data vo4d,
blobs.doc_obj bdo
where
vo4d.type = 'patient photograph'
and
vo4d.seq_idx = (
select max(vo4d1.seq_idx)
from blobs.v_obj4doc_no_data vo4d1
where
vo4d1.pk_patient = vo4d.pk_patient
and
vo4d1.type = 'patient photograph'
group by date_generated
order by date_generated desc limit 1
)
and
bdo.pk = vo4d.pk_obj
;
comment on view blobs.v_latest_mugshot is
'shows the latest picture of the patient, currently the highest
seq_idx of the newest document of type "patient photograph"';
-- --------------------------------------------------------------
grant select on blobs.v_latest_mugshot to group "gm-doctors";
-- --------------------------------------------------------------
select gm.log_script_insertion('$RCSfile: v10-blobs-v_latest_mugshot.sql,v $', '$Revision: 1.1 $');
-- ==============================================================
-- $Log: v10-blobs-v_latest_mugshot.sql,v $
-- Revision 1.1 2008-12-01 21:46:34 ncq
-- - new
--
--
|