]> matita.cs.unibo.it Git - helm.git/blob - helm/metadata/sql/fill_no_concl_hyp.sql
added query to fill no_concl_hyp table
[helm.git] / helm / metadata / sql / fill_no_concl_hyp.sql
1
2 INSERT INTO no_concl_hyp
3 SELECT source, COUNT(DISTINCT h_occurrence)
4 FROM refObj
5 WHERE NOT (h_position="http://www.cs.unibo.it/helm/schemas/schema-helm#InBody")
6 GROUP BY source;
7