Hierarchical and Recursive Queries in SQL Server
Jasmin Ludolf
Content Developer
Properties of hierarchical data models:
Advantages:
Disadvantages:
Customer-bill-article relation:
One customer can have several bills and each bill can have several articles
CREATE TABLE Customer (
ID INT NOT NULL);
CREATE TABLE Bill (
BillID INT NOT NULL,
CustomerID INT);
CREATE TABLE Article (
ArticleID INT NOT NULL,
BillID INT);
Properties of networked data models:
Advantages:
Disadvantage:
Customer-order-article relation:
Many customers can have several orders and each order can have several articles.
CREATE TABLE Customer (
ID INT NOT NULL);
CREATE TABLE Order (
OrderID INT NOT NULL,
CustomerID INT);
CREATE TABLE Article (
ArticleID INT NOT NULL,
OrderID INT);
Hierarchical and Recursive Queries in SQL Server