(no title)
dliff
|
5 years ago
In the past I used recursive CTEs in Postgres to calculate the BOM of a product. Products consisted of "parts", and each "part" had a cost and could consist of any number of other "parts" (subassemblies).
This was for a homemade ERP resembling software.
jiofih|5 years ago
A graph database usually means you’re storing the graph nodes and edges as entities, so you can traverse the graph easily from any direction, and express different kinds of relationships.
dliff|5 years ago
Either way my intention here was to simply provide an example of a real-world recursive CTE use case.