树型目录

一、实例图片

 

 

 

 

 

 

 

 

 

 

二、点击下载

 

三、SQL

USE [master]
GO
/****** 对象:  Table [dbo].[Tree]    脚本日期: 06/09/2009 09:11:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Tree](
 [HangBiaoShi] [int] NOT NULL,
 [BiaoShi] [int] NOT NULL,
 [MingCheng] [nchar](100) NULL,
 [ParentId] [int] NOT NULL,
 [NodeDescription] [nchar](100) NULL,
 [NodeUrl] [nchar](100) NULL,
 [NodeXianShi] [int] NULL,
 [NodeQuanXian] [nchar](200) NULL,
 [NodeCiXu] [int] NULL,
 CONSTRAINT [PK_Tree] PRIMARY KEY CLUSTERED
(
 [HangBiaoShi] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

posted @ 2009-06-08 20:16  南阳·源  阅读(300)  评论(0编辑  收藏  举报