Top "Hierarchical-data" questions

Hierarchical data reflects a set of parent-child relationships.

Hierarchical/tree database for directories path in filesystem

I want to store the directories (present on the disk) into a database, maintaining their hierarchical/tree structure. Here's a …

sql sqlite path tree hierarchical-data
Implementing a hierarchical data structure in a database

I know there are two approaches: adjacency list and nested tree. It's said that adjacency list can become slow to …

mysql database hierarchical-data
How to self JOIN recursively in SQL?

I have a table: Series ======== ID SeriesName ParentSeriesID A series can be a "root" series, (ParentSeriesID is 0 or null) or …

sql sql-server-2005 tsql hierarchical-data
How to store a tree in SQL database

I have to store a tree in a database, so what is the best way to do this? Show the …

sql sql-server tsql hierarchical-data
Counting number of children in hierarchical SQL data

for a simple data structure such as so: ID parentID Text Price 1 Root 2 1 Flowers 3 1 Electro 4 2 Rose 10 5 2 Violet 5 6 4 Red Rose 12 7 3 Television 100 8 3 …

sql sql-server hierarchy hierarchical-data
Tree structure in sql in Oracle.How to show tree,child nodes and parent nodes in SQL Oracle

I would like to show a tree structure in SQL with child nodes and parent nodes. I have a table …

sql oracle hierarchical-data recursive-query connect-by
Is it a good idea to use MySQL and Neo4j together?

I will make an application with a lot of similar items (millions), and I would like to store them in …

architecture mysql hierarchical-data neo4j graph-databases
SQL query for parent-child chain

I have a single table that can refer to one other member in the table as a parent. That parent …

sql sql-server sql-server-2005 tsql hierarchical-data
Hierarchical Data in MySQL

I've got a sort of tree like thing going on in my MySQL database. I have a database that has …

mysql join hierarchical-data
MySQL Closure Table hierarchical database - How to pull information out in the correct order

I have a MySQL database holding hierarchical data using the Closure Table method. A simple sample database create script follows …

mysql hierarchical-data transitive-closure-table