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
출처: https://devdb.tistory.com/16 [DB 관련:티스토리]
'DB 관련' 카테고리의 다른 글
[MSSQL] BLOB Insert/Update 예제 (0) | 2024.12.27 |
---|---|
[MSSql] 데이터 유형 hierarchyid 를 이용한 계층구조 테이블 생성 및 추가/... (0) | 2024.12.27 |
[MSSql] xp_cmdshell 사용 설정 (0) | 2024.12.27 |
[MSSql] Excel 읽기, 불러오기 (0) | 2024.12.27 |
[MSSql] varbinary 데이터를 파일로 저장하는 방법 (0) | 2024.12.27 |