SQL Server中对XML操作
摘要:
博客园的账号密码忘了,先放这儿吧 1. 检查XML中节点是否存在 SELECT xmlContent.exist('/Samples/Sample'), * FROM xmlTable WHERE xmlContent.exist('/Samples/Sample') = 1 SELECT xmlContent.exist('/Samples//Name'), * FROM xmlTable WHERE xmlContent.exist('/Samples//Name') = 1 2. 检查节点值是否存在 SELECT TOP 1 阅读全文
posted @ 2011-08-21 14:13 流云之心 阅读(459) 评论(0) 推荐(0) 编辑