728x90
declare @hid hierarchyid = hierarchyid::GetRoot();
set @hid = @hid.GetDescendant(null,null);
1. 경로를 문자열로 변환 :
print @hid.ToString();
==> /1/
2. 16진수 숫자를 문자열로 변환 :
print convert(nvarchar(20),convert(varbinary(20),@hid,1),1);
print convert(varchar,convert(varbinary,@hid,1),1);
==> 0x78
'기본카테고리' 카테고리의 다른 글
[MSSql] Excel 읽기, 불러오기 (0) | 2015.04.17 |
---|---|
[MSSql] xp_cmdshell 사용 설정 (0) | 2015.04.17 |
[MSSql] 데이터 유형 hierarchyid 를 이용한 계층구조 테이블 생성 및 추가/삭제/검색 (0) | 2015.03.21 |
[MSSQL] BLOB Insert/Update 예제 (0) | 2014.10.15 |
[MSSQL] 로그 및 빈공간 삭제 (0) | 2014.03.27 |