3

我创建了一个包含两个表的新数据库来测试 SQLServer 2008 XML 功能。

如果我能成功获得所需的行为,我将不得不创建大约 50 个表,然后为新项目导入大量 XML 文件。

我的测试环境是这样创建的:

create table Employees(
    idEmployeeFeed bigint primary key IDENTITY(1,1),
    EmployeeFeed xml
)
go

create table GeoCountries(
    CountriesFeed xml
)
go

然后我在Employees 表中加载了大约1000 个xml 文件,在GeoCountries 表中加载了1 个文件。GeoCountries 文件包含 249 个国家的经纬度质心坐标以及国家名称和 ISO 3 字符国家代码。

每个员工都有一个国家代码。我已经在另一个产品中准备好了 XQuery,现在我需要根据客户的要求迁移到 SQL Server。

使用 XQuery 获得的两个表中的示例数据:

select EmployeeFeed.query('//employee') as employee
from Employees
/* output:
    <employee empID="1111" >
      <displayName>John</displayName>
      <country code="USA" />
    </employee>
    <employee empID="2222" >
      <displayName>Mario</displayName>
      <country code="ITA" />
    </employee>
    ...
*/

select EmployeeFeed.query('//employee/country') as employee
from Employees
/* output:
    <country code="USA" />
    <country code="ITA" />
    ...
*/

select CountriesFeed.query('//country')
from GeoCountries
/* output:
    <country>
      <ISO3166A3>USA</ISO3166A3>
      <ISOen_name>United States</ISOen_name>
      <latitude>38.000</latitude>
      <longitude>-97.000</longitude>
    </country>
    <country>
      <ISO3166A3>ITA</ISO3166A3>
      <ISOen_name>Italy</ISOen_name>
      <latitude>42.833</latitude>
      <longitude>12.833</longitude>
    </country>
    ...
*/

select CountriesFeed.query('//country/ISO3166A3')
from GeoCountries
/* output:
    <ISO3166A3>USA</ISO3166A3>
    <ISO3166A3>ITA</ISO3166A3>
    ...
*/

这是我试图运行的查询:

select EmployeeFeed.query(N'
  let $ccc := //country
  let $ttt := //employee
  for $t in $ttt  
  return
        <geoEmp
        empCode="{ $t/@empID }" 
        countryCode="{ $t/country/@code }" 
        latit="{ $ccc[ISO3166A3 = $t/country/@code]/latitude/text() }" 
        longit="{ $ccc[ISO3166A3 = $t/country/@code]/longitude/text() }"
        />
') as GeoEmployees
from Employees
/* output:
    <geoEmp empCode="1111" countryCode="USA" latit="" longit="" />
    <geoEmp empCode="2222" countryCode="ITA" latit="" longit="" />
    ...
*/

如您所见,国家代码 + 纬度/经度已预加载到变量 $ccc 中以将其用作查找表,但是,作为另一个 SQL 表 (GeoCountries) 中的数据,它无法在当前 XQuery 上下文中找到绑定到 SQL 表员工。

有没有办法运行 XQuery 访问存储在单独 SQL 表中的 XML?如果我迁移,我将有 100-200 个类似的情况需要管理,我需要为这个问题找到一个有效的解决方案。

4

1 回答 1

1

这个怎么样:

select e.empID as '@empCode', c.code as '@countryCode', c.lat as '@latit', c.long as '@longit' from (
    select e.emp.value('(@empID)[1]', 'int') as empID, e.emp.value('(country/@code)[1]', 'varchar(32)') as code
    from Employees
    cross apply EmployeeFeed.nodes('//employee') e(emp)
) e
inner join (
    select c.country.value('(ISO3166A3)[1]', 'varchar(32)') as code, c.country.value('(latitude)[1]', 'varchar(32)') as lat, c.country.value('(longitude)[1]', 'varchar(32)') as long
    from GeoCountries
    cross apply CountriesFeed.nodes('//country') c(country)
) c on e.code = c.code
for xml path('geoEmp'), type
于 2013-02-21T14:44:18.260 回答