本文介绍了如何将hierarchyid转换为int的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想通过asc命令hierarchyid字段,但我不知道如何将它转换为int

I want order hierarchyid field by asc, but i dont know how cast it to int

select Path.ToString() as Nomer ,
        Path,
        Name,
        Path.GetLevel() as Axixa

from Users order by cast(Path as nvarchar(100)) ASC;



/1/1/
/1/2/
/1/3/
/2/1/
/2/2/
/2/3/
-/214/1/-
-/214/2/-
/3/1/1/
/3/1/2/

should be so

/1/1/
/1/2/
/1/3/
/2/1/
/2/2/
/2/3/
/3/1/1/
/3/1/2/
/214/1/
/214/2/

推荐答案

SELECT
   Path.ToString() as Nomer,
   Path,
   Name,
   Path.GetLevel() as Axixa
FROM
   Users
ORDER BY
   Path
;

/*
Output:

/1/1/
/1/2/
/1/3/
/2/1/
/2/2/
/2/3/
/3/1/1/
/3/1/2/
/214/1/
/214/2/
*/



[]


ORDER BY RIGHT('000'+CAST(Path AS VARCHAR(3)),3) ASC


这篇关于如何将hierarchyid转换为int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 01:57