Transclude of Top-projets.base

Types de fiches

 
TABLE WITHOUT ID type-de-fiche AS "Type de fiche", length(rows) AS "Nombre de références"
FROM "1_Refs"
FLATTEN type-de-fiche GROUP BY type-de-fiche SORT length(rows) DESC
WHERE type-de-fiche

Références par fonction

TABLE WITHOUT ID fonction as Fonction, rows.file.link AS "Référence(s)"
FROM "1_Refs"
FLATTEN fonction GROUP BY fonction
WHERE fonction
SORT Fonction DESC

Références par catégorie

TABLE WITHOUT ID Catégorie as Catégorie, rows.file.link AS "Référence(s)"
FROM "1_Refs"
FLATTEN Catégorie GROUP BY Catégorie
WHERE Catégorie
SORT Catégoie DESC

Références classées par programme

TABLE WITHOUT ID Type_de_programme as Programme, rows.file.link AS "Référence(s)"
FROM "1_Refs"
FLATTEN Type_de_programme GROUP BY Type_de_programme
WHERE Type_de_programme
SORT Programme DESC

Catégories de programmes

 
TABLE WITHOUT ID Type_de_programme AS "Programme", length(rows) AS "Nombre de références"
FROM "1_Refs"
FLATTEN Type_de_programme GROUP BY Type_de_programme SORT length(rows) DESC

Type de territoires

 
TABLE WITHOUT ID type-de-territoire AS "Type de territoire", length(rows) AS "Nombre de références"
FROM "1_Refs"
FLATTEN type-de-fiche GROUP BY type-de-territoire SORT length(rows) DESC
WHERE type-de-territoire