blob: caf3c1f245fc3c38ad8392b9719246397b0d9c43 (
plain)
1
2
3
4
5
6
|
SELECT T.id AS trial_id,case_id,classification,description
INTO public.definitive_trials
FROM justice.trials AS T, justice.cases AS C
WHERE T.case_id = C.id
AND T.status = 'FINISHED'
ORDER BY classification, case_id
|