--如下sql语句、模糊查询Tree时从一个符合条件的集合中查询
select * from [3d_Customer_Cymb] where Cus_Id=101 and Mark=0
and Tree like
(select '%'+cast(Tree as nvarchar(max))+'%' from [3d_Customer_Cymb]
where Id in
( select Id from [3d_Customer_Cymb] where Mark=0 and Cus_Id=101 and
ParentId=0 )
and ParentId=0 )
order by Sort asc,Id asc
--like后面查询的集合就报错了、咋办
--或者有其他的办法么?
foreach( DataRow item in tab )
{
strWhere = " or Tree Like item["newTree"] ";
}