Posts

Showing posts from February 21, 2019

Muscari à toupet

Image
.mw-parser-output h1 #sous_titre_h1{display:block;font-size:0.7em;line-height:1.3em;margin:0.2em 0 0.1em 0.5em} Muscari comosum Muscari comosum Muscari à toupet Classification Règne Plantae Sous-règne Tracheobionta Division Magnoliophyta Classe Liliopsida Sous-classe Liliidae Ordre Liliales Famille Liliaceae Genre Muscari Nom binominal Muscari comosum (L.) Mill., 1768 Classification phylogénétique Classification phylogénétique Ordre Asparagales Famille Asparagaceae Le Muscari à toupet ( Muscari comosum (L.) Mill.) est une plante bulbeuse de la famille des Asparagacées selon la classification phylogénétique (précédemment classée parmi les Liliacées puis dans les Hyacinthacées selon la classification classique). Elle est cultivée comme plante ornementale. Elle appartient au genre Muscari qui compte une trentaine d'espèces originaires des régions méditerranéennes, dont plusieurs sont culti

Postgres Retrieve all id in a tree for given subnode

Image
up vote 4 down vote favorite I have a non-binary tree of customer, and I need to obtain all the id in a tree for the given node. The table is very simple just an join table with parent id and child id This is a representation of the tree I stored in my db. In this example if I search for node 17 I need in return 14-17 if I search for 11 I need in return 1-6-5-4-8-11-12-7-2-10-3 The order is not important I only need the id to avoid circularity when add children to a node. I created this query. The ancestor part works fine, I retrieve all parent nodes, but for the descendants I have some trouble. I'm only able to retrieve some part of the tree. For example, with node 11 I retrieve 4-10-6-11-7-8, so all right part of the tree is missing WITH RECURSIVE -- starting node(s) starting (parent, child) AS ( SELECT