March 2009
M T W T F S S
« Feb   May »
 1
2345678
9101112131415
16171819202122
23242526272829
3031  
Wikipedia Affiliate Button

Managing Hierarchical Data in SQL

SQL databases are not designed for hierarchical data since the data is stored in flat relational tables with no built in parent-child relationship methods (Oracle does have the connect_by function to help). XML databases on the other hand are built for hierarchical data.

So with SQL databases we have a problem that requires a solution. Thanks to the SQL gurus out there we have three models to resolve this issue. In this post I will point you to these resources.