Created
February 1, 2017 16:37
-
-
Save atarkowska/2b32e36ff1c03a2d86dc6c20703a9ed2 to your computer and use it in GitHub Desktop.
review populate metadata based on event log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select el.*, ev.* from eventlog as el | |
inner join event as ev on (el.event=ev.id) | |
inner join wellannotationlink as wal on (wal.id = el.entityid) | |
inner join well as w on (wal.parent=w.id) | |
inner join plate as p on (w.plate=p.id) | |
inner join screenplatelink as spl on (spl.child=p.id) | |
where ev."time" > '2017-01-31 16:00:00.000' | |
and spl.parent = 1203 | |
and el.action != 'REINDEX' | |
and el.entitytype = 'ome.model.annotations.WellAnnotationLink' | |
order by 2 | |
select el.*, ev.* from eventlog as el | |
inner join event as ev on (el.event=ev.id) | |
inner join imageannotationlink as ial on (ial.id = el.entityid) | |
inner join image as i on (ial.parent = i.id) | |
inner join wellsample as ws on (ws.image=i.id) | |
inner join well as w on (ws.well=w.id) | |
inner join plate as p on (w.plate=p.id) | |
inner join screenplatelink as spl on (spl.child=p.id) | |
where ev."time" > '2017-01-31 16:00:00.000' | |
and spl.parent = 1203 | |
and el.action != 'REINDEX' | |
and el.entitytype = 'ome.model.annotations.ImageAnnotationLink' | |
order by 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment