XML type column : XML column « XML « SQL Server / T-SQL






XML type column

 


3> Create table dbo.Eq2(
4>                 EqId int,
5>                 EqCompList xml)
6> GO
1>
2>
3> drop table dbo.Eq2 ;
4> GO
1>
2>
3>

 








Related examples in the same category

1.Declare XML type variable and use it in insert statement