1
xml path ( '') 출력용
내가 다음을 실행할 때 select t.type from (values ('Green'),('Blue'),('Red')) as t(type) for xml path('') 이 결과를 받는다 <type>Green</type> <type>Blue</type> <type>Red</type> 내가 다음을 실행하면 select t.type + '/' from (values ('Green'),('Blue'),('Red')) as t(type) for xml path('') 이 결과를 받는다 Green/Blue/Red/ 선택에 연결을 추가하면 유형 태그가 제거되고 xml 파일의 한 줄에 출력되는 …