本文主要是介绍第四章、XML集成(定义XML数据列、XML模式集合、XML数据类型方法 .query,.value,.modify,.nodes,.exists),关系数据转成XML,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
注意:XML区分大小写
一、XML数据类型
XML数据类型是Sql2005率先引入的。1、定义XML数据的列
CREATE TABLE [Production].[ProductModel]([ProductModelID] [int] IDENTITY(1,1) NOT NULL,[Name] [dbo].[Name] NOT NULL,--[CatalogDescription]表中的格式[CatalogDescription] [xml](CONTENT [Production].[ProductDescriptionSchemaCollection]) NULL,[Instructions] [xml](CONTENT [Production].[ManuInstructionsSchemaCollection]) NULL,[rowguid] [uniqueidentifier] ROWGUIDCOL NOT NULL,[ModifiedDate] [datetime] NOT NULL,CONSTRAINT [PK_ProductModel_ProductModelID] PRIMARY KEY CLUSTERED
([ProductModelID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
2、XML模式集合
XML架构本身也是一个XML,只不过它是用于描述XML字段中内容的结构。
推荐阅读:SQL Server 2005学习笔记之 XML架构
http://blog.csdn.net/u014038143/article/details/78192045(推荐)
http://blog.csdn.net/u014038143/article/details/78192044(注意:" 是键盘逗号键上面)
实例:
--创建XML架构集合
CREATE XML SCHEMA COLLECTION MyXMLSchema
AS
'
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="books">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="book" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
'--查询库中的XML架构集合
Select * from sys.xml_schema_collections--创建表
CREATE TABLE [cs]([ID] [int] IDENTITY(1,1) NOT NULL,[Books] [xml](CONTENT [MyXMLSchema]) NULL,
)--定义一个绑定到架构MyXMLSchema架构集合的XML变量
Declare @MyXML AS XML(MyXMLSchema)
--赋予结构正确的XML数据
Set @MyXML =
'
<books>
<book>电话号码大全</book>
</books>
'
--插入数据
insert into cs values(@MyXML)
3、修改和删除XML模式集合
(1)、修改XML模式集合(2)、删除XML模式集合
--修改XML架构集合
ALTER XML SCHEMA COLLECTION MyXMLSchema
ADD
'
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="Journals">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Journal" type="xsd:string" maxOccurs="100"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
'--删除XML架构集合
drop XML SCHEMA COLLECTION MyXMLSchema
4、XML数据类型方法
(1).query
类似于SQL查询,只是结果匹配于XML数据节点实例1:
declare @myDoc xml
set @myDoc = '<Root>
<ProductDescription ProductID="1" ProductName="Road Bike">
<Features> <Warranty>1 year parts and labor</Warranty> <Maintenance>3 year parts and labor extended maintenance is available</Maintenance>
</Features>
</ProductDescription>
</Root>'
SELECT @myDoc.query('/Root/ProductDescription/Features')
查询返回结果
<Features>
<Warranty>1 year parts and labor</Warranty>
<Maintenance>3 year parts and labor extended maintenance is available</Maintenance>
</Features>
实例2:
--查找Production.ProductModel表的Instructions字段中step
--declare namespace 声明的命令空间必须在一行
select ProductModelID,Instructions.query('declare namespace PI="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions";
/PI:root/PI:Location/PI:step')
from Production.ProductModel
where ProductModelID=66
或者是
with xmlnamespaces('http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions' as PI) select ProductModelID,Instructions.query('/PI:root/PI:Location/PI:step')
from Production.ProductModel
where ProductModelID=66
原Instructions的XML内容
<?xml version="1.0" encoding="utf-8"?><root xmlns="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions">Adventure Works CyclesWA-620 Instructions Assembling the LL Touring Seat Summary: This docu
这篇关于第四章、XML集成(定义XML数据列、XML模式集合、XML数据类型方法 .query,.value,.modify,.nodes,.exists),关系数据转成XML的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!