[此贴子已经被作者于2006-7-21 14:39:52编辑过]
示例
分公司1下属单位
declare @string varchar(6)declare @depth intselect @string=BranchCode,@depth=Depthfrom tablenamewhere BranchName='分公司1'
select *from tablenamewhere left(BranchCode,2*@depth)=left(@string,2*@depth)
[此贴子已经被作者于2006-7-21 16:23:56编辑过]