给定两个表:
T1( EntityID int , EmailAddress varchar(55),MaxNumberOfConnections int )
T2( EntityID int , EntityAttributes XML )
如何使用单个语句将所有数据插入到其中,从而将 (all but) 中的所有列T1
转换为以下中的一个 XML 列:T2
T1
EntityID
T2
T1( 1,'1234@1234.com',454)
T2(1, '<Attributes>
<Attribute EmailAddress="1234@1234.com">
<Attribute MaxNumberOfConnections ="454">
</Attributes>' )