Super storage process! Original, copyright! Extreme! ! !

xiaoxiao2021-03-06  87

In developing database applications, we often need to represent multi-level relationships, such as BOM, multi-level organizational structure, multi-level role relationships in the MRP ... When we describe this relationship in the database, we usually use the parent. The node points to the design table structure, such as the table structure of the department is defined as follows:

CREATE TABLE TDEPARTMENT (PARENTNO VARCHAR (25), / * Super-level department number, indicating that the current record is a top department. * / DepArtmentno varchar (25) Primary Key Clustered, / * Current department number, primary key field. * / Name nvarchar (100) Not null, / * department name. * / Nameex nvarchar (100), / * extension name. * / Remark NVARCHAR (500) / * Remarks. * /)

Functional requirements: Get the record set of the subordinate sectors of the specified department number and all or the specified hierarchies thereof.

In the previous development, we usually handle the above requirements in the client or intermediate layer, usually by programming language (VB, Delphi, Java / .NET) to process the record set returned from the database, this method usually needs Receive a record of the entire table from the database, because we cannot determine which subordinate records have of given the primary key, and then use the recursive manner in the programming code to obtain the relevant sub-record. This way of using recursive is often difficult to avoid the dead cycle problems caused by illegal records in the data (of course, you can also handle this problem, just some trouble, and usually not beautiful enough). So, can handle this problem in the database, which can reduce unnecessary data transmission, and avoid the negative impact of the recursive, it is best to automatically block the problem of illegal data points (current The recorded parent pointer field points to its subordinate record). Oh, it's time to get it, show your dagger (code, transact-sql / ms-sqlserver 2000):

/ * Copyright All (c) 2004 zhongfeng, http://blog.9cbs.net/sw515 * / create procedure dbo.pselectDepartmentHierarchy @DEPARTNO VARCHAR (25), @Depth int = -1AS set nocount on

Declare @TSTACK TABLE (Indicator VARCHAR (50))

Declare @index int set @Index = 0

INSERT INTO @tstack Select Departmentno from dbo.tdepartment Where Departmentno Like @DEPARTNO, INTDEPARTMENTNO

While @@ rowcount> 0 and (@index <@Depth or @Depth <0) begin set @index = @index 1

INSERT INTO @TStack SELECT DepartmentNo FROM dbo.TDepartment WHERE ParentNo IN (SELECT Indicator FROM @TStack) AND DepartmentNo NOT IN (SELECT Indicator FROM @TStack) ENDSELECT dbo.TDepartment. * FROM @TStack AS t INNER JOIN dbo.TDepartment ON t. Indicator = dbo.tDepartment.DepartmentNogo

OK, finished the collection. Short! ! !

You can use or part to reference this code, but you must retain the content of the above copyright annotation, and note the source of the code, otherwise the right to investigate the violations will be retained!

If you find a bug, please contact me (SW515@21cn.com), thank you for your cooperation.

Published on August 26, 2004 11:20 am

comment

#

Reply: Super storage process! Original, copyright! Extreme! ! !

2004-08-26 1:06 PM

PC2S

If you use Oracle, you don't have to be so complicated. Oracle provides recursive query features, as needed above, only need a SQL statement to easily implement:

Select Parentno, Departmentno, Name, Nameex, Remark

From TDepartment

START with departmentno = specified department number

Connect by Parentno = DepartmentNo;

Of course, this article is written by MS-SQL, which is quite good.

转载请注明原文地址:https://www.9cbs.com/read-123223.html

New Post(0)