sql server导出查询结果到xml文件到硬盘

-Tracy-McGrady- 2014-01-15 11:25:25

本来是用程序导出的xml文件到C盘下面,现在想请教各位能不能用sql server存储过程来实现?
...全文
797 64 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
64 条回复
切换为时间正序
请发表友善的回复…
发表回复
kate_1988 2016-02-19
  • 打赏
  • 举报
回复
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
引用 49 楼 yupeigu 的回复:
写个类似的:
引用 48 楼 ap0405140 的回复:
用while实现也许比较麻烦喔,担心游标性能问题的话,可以用静态游标(cursor static). 导出xml文件的方法如下.
谢谢两位了,我爱你们,我爱CSDN数据库板块。
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
引用 62 楼 yupeigu 的回复:
对了,唐诗版主的方法,快吗
还没试过呢,今天事有点多,这个事情就先放了一下。
LongRui888 2014-01-20
  • 打赏
  • 举报
回复
引用 61 楼 yangsh0722 的回复:
[quote=引用 60 楼 yupeigu 的回复:] 啊,我这儿挺快的,估计是你的数据比较多吧
嗯,数据多,能优化或者重新写吗?[/quote] 对了,唐诗版主的方法,快吗
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
引用 60 楼 yupeigu 的回复:
啊,我这儿挺快的,估计是你的数据比较多吧
嗯,数据多,能优化或者重新写吗?
LongRui888 2014-01-20
  • 打赏
  • 举报
回复
引用 59 楼 yangsh0722 的回复:
[quote=引用 57 楼 yupeigu 的回复:]这样吗:
你把我的数据弄进去,运行下我写的那个语句,看看效果就知道我想要什么样的了。我觉得我模仿你之前给的那个代码写的那个太复杂了,重复调用了好几次表,查询起来好慢。[/quote] 啊,我这儿挺快的,估计是你的数据比较多吧
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
引用 57 楼 yupeigu 的回复:
这样吗:
你把我的数据弄进去,运行下我写的那个语句,看看效果就知道我想要什么样的了。我觉得我模仿你之前给的那个代码写的那个太复杂了,重复调用了好几次表,查询起来好慢。
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
引用 57 楼 yupeigu 的回复:
这样吗:
这个更不行,都两分钟了还在转。
LongRui888 2014-01-20
  • 打赏
  • 举报
回复
引用 55 楼 yangsh0722 的回复:
[quote=引用 54 楼 yupeigu 的回复:] 我看了上面的代码能实现你上面的那个图的需求,你是想用其他的办法实现?
我本来的意思是group by ydh,把不同的运单号生成不同的xml,就像下面的一样,然后再导出。 [/quote] 这样吗:
declare cur cursor
for select ydh from  ypls.dbo.spgj_yjm

declare @ydh int;

open cur
fetch next from cur into @ydh

while @@fetch_status = 0
begin

;with cte as(
select '00000000000000043621' as FromCorpID,getdate() as ActDate,'蔡琳' as Actor,t1.ydh as CorpOrderID,'2013'+right('0000000000'+cast(t1.ydh as varchar),10) as BillID,'102' as Name,
cast((select '' as UpperCorpOrderID,t2.yjm as Code from ypls.dbo.spgj_yjm t2 where t2.flag=0 and t1.ydh=t2.ydh for xml raw('Data')) as xml) DataField
from ypls.dbo.spgj_yjm t1
where t1.flag=0 and t1.ydh = @ydh
group by t1.ydh
)
select CorpOrderID
,cast('<Document xmlns:xsi="http://www1.drugadmin.com" Version="3.0" SN="computer" License="license">
  <Event ID="StockIn">
    '+
    (select * from cte t2 with(nolock) where t1.CorpOrderID=t2.CorpOrderID for xml raw('Bill'))+'
  </Event>
</Document>' as xml)as xmlCol
from cte t1 with(nolock)
group by CorpOrderID

fetch next from cur into @ydh
end

close cur
deallocate cur
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
感觉我的这个写法不对,太慢了。

with cte as(
select '00000000000000043621' as FromCorpID,getdate() as ActDate,'蔡琳' as Actor,t1.ydh as CorpOrderID,'2013'+right('0000000000'+cast(t1.ydh as varchar),10) as BillID,'102' as Name,     
       cast((select '' as UpperCorpOrderID,t2.yjm as Code from ypls.dbo.spgj_yjm t2 where t2.flag=0 and t1.ydh=t2.ydh for xml raw('Data')) as xml) DataField        
from ypls.dbo.spgj_yjm t1
where t1.flag=0
group by t1.ydh
)
select CorpOrderID
,cast('<Document xmlns:xsi="http://www1.drugadmin.com" Version="3.0" SN="computer" License="license"><Event ID="StockIn">'+
(select * from cte t2 with(nolock) where t1.CorpOrderID=t2.CorpOrderID for xml raw('Bill'))+'</Event></Document>' as xml)as xmlCol 
from cte t1 with(nolock)
group by CorpOrderID
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
引用 54 楼 yupeigu 的回复:
我看了上面的代码能实现你上面的那个图的需求,你是想用其他的办法实现?

我本来的意思是group by ydh,把不同的运单号生成不同的xml,就像下面的一样,然后再导出。
LongRui888 2014-01-20
  • 打赏
  • 举报
回复
引用 52 楼 yangsh0722 的回复:
其实我想要的想过是这样的 但是是用的sql语句有点复杂,求重新帮忙啊。

with cte as(
select '00000000000000043621' as FromCorpID,getdate() as ActDate,'蔡琳' as Actor,t1.ydh as CorpOrderID,'2013'+right('0000000000'+cast(t1.ydh as varchar),10) as BillID,'102' as Name,     
       cast((select '' as UpperCorpOrderID,t2.yjm as Code from ypls.dbo.spgj_yjm t2 where t2.flag=0 and t1.ydh=t2.ydh for xml raw('Data')) as xml) DataField        
from ypls.dbo.spgj_yjm t1
where t1.flag=0
group by t1.ydh
)
select CorpOrderID
,cast('<Document xmlns:xsi="http://www1.drugadmin.com" Version="3.0" SN="computer" License="license"><Event ID="StockIn">'+
(select * from cte t2 with(nolock) where t1.CorpOrderID=t2.CorpOrderID for xml raw('Bill'))+'</Event></Document>' as xml)as xmlCol 
from cte t1 with(nolock)
group by CorpOrderID
数据如下

create table spgj_yjm(ydh int,yjm varchar(20),flag int)
insert into spgj_yjm(ydh,yjm,flag)
select 2986257, '81053100420710742042', 0 union all
select 2986257, '81053100345474414914', 0 union all
select 2986257, '81053100345407630079', 0 union all
select 2986257, '81053100420710626059', 0 union all
select 2986257, '81053100345090719079', 0 union all
select 2986257, '81362950039343829966', 0 union all
select 2986257, '81362950039059747590', 0 union all
select 2986257, '81362950039278683351', 0 union all
select 2986257, '81362950039481176662', 0 union all
select 2986257, '81362950035147001616', 0 union all
select 2986257, '81362950034626317707', 0 union all
select 2986257, '81362950039799701376', 0 union all
select 2986257, '81362950039927332623', 0 union all
select 2986257, '81362950039893599528', 0 union all
select 2986257, '81362950039113920380', 0 union all
select 2986257, '81476910211407935898', 0 union all
select 2986257, '81476910211407935898', 0 union all
select 2986257, '81476910097890889250', 0 union all
select 2986257, '81419670574806084646', 0 union all
select 2986257, '81419670570800837414', 0 union all
select 2986257, '81419670576219782529', 0 union all
select 2986257, '81419670572037813949', 0 union all
select 2986257, '81419670568375687887', 0 union all
select 2995975, '81206620073443503824', 0 union all
select 2995975, '81206620073443470219', 0 union all
select 2995975, '81206620073443499601', 0 union all
select 2995974, '81311630034496251611', 0 union all
select 2995974, '81311630034496822406', 0 union all
select 2995974, '81311630034496872428', 0 union all
select 2995974, '81311630034496797857', 0 union all
select 2995974, '81311630034677491438', 0 union all
select 2995974, '81311630034496802588', 0 union all
select 2995974, '81311630034496812356', 0 union all
select 2995974, '81311630034680372827', 0 union all
select 2995974, '81311630034496850861', 0 union all
select 2995974, '81311630034496861165', 0 union all
select 2995974, '81311630034677480463', 0 union all
select 2995974, '81311630034680390993', 0 union all
select 2995974, '81605280127535045624', 0 union all
select 2995974, '81605280127463070629', 0 union all
select 2995974, '81605280127537065416', 0 union all
select 2995974, '81605280127464511002', 0 union all
select 2995974, '81605280127428491931', 0 union all
select 2995974, '81605280127465590151', 0 union all
select 2995974, '81605280127464871653', 0 union all
select 2995974, '81605280127535221920', 0 union all
select 2995974, '81605280127427235970', 0 union all
select 2995974, '81605280127472761856', 0 union all
select 2995974, '81605280127460732584', 0 union all
select 2995974, '81605280127463791356', 0 union all
select 2995974, '81605280127426874334', 0 union all
select 2995974, '81605280127463254606', 0 union all
select 2995974, '81605280127535940173', 0 union all
select 2995974, '81605280127539541185', 0 union all
select 2995974, '81605280127463619787', 0 union all
select 2995974, '81605280127464159628', 0 union all
select 2995974, '81605280127536485123', 0 union all
select 2995974, '81605280127461276246', 0 union all
select 2995974, '81605280127463431091', 0 union all
select 2995974, '81605280127533967268', 0 union all
select 2995974, '81605280127533428059', 0 union all
select 2995974, '81605280127534147380', 0 union all
select 2995974, '81605280127539002267', 0 union all
select 2995974, '81605280127534506824', 0 union all
select 2995974, '81605280127427956164', 0 union all
select 2995974, '81605280127472581208', 0 union all
select 2995974, '81605280127537607374', 0 union all
select 2995974, '81605280127427419772', 0 union all
select 2995974, '81605280127428315154', 0 union all
select 2995974, '81605280127345877748', 0 union all
select 2995974, '81605280127171837163', 0 union all
select 2995974, '81605280127426338395', 0 union all
select 2995974, '81605280127460913138', 0 union all
select 2995974, '81605280127461452218', 0 union all
select 2995974, '81605280127539901726', 0 union all
select 2995974, '81605280127465415833', 0 union all
select 2995974, '81605280127534323242', 0 union all
select 2995974, '81605280127345694603', 0 union all
select 2995974, '81605280127537962717', 0 union all
select 2995974, '81605280127427591245', 0 union all
select 2995974, '81605280127536307424', 0 union all
select 2995974, '81605280127536883412', 0 union all
select 2995974, '81605280127539182095', 0 union all
select 2995974, '81605280127536666302', 0 union all
select 2995974, '81605280127462178238', 0 union all
select 2995974, '81605280127462530869', 0 union all
select 2995974, '81419670566978456179', 0 union all
select 2995974, '81419670567631216369', 0 union all
select 2995974, '81419670566871919395', 0 union all
select 2995974, '81419670568193533020', 0 union all
select 2995974, '81419670575311965521', 0 union all
select 2995974, '81419670574718171679', 0 union all
select 2995974, '81419670571761932295', 0 union all
select 2995974, '81419670573716174759', 0 union all
select 2995974, '81419670575655744424', 0 union all
select 2995974, '81419670568116444607', 0 union all
select 2995974, '81419670568767948620', 0 union all
select 2995974, '81419670567897893551', 0 union all
select 2995974, '81419670571439491486', 0 union all
select 2995974, '81419670575798074186', 0 union all
select 2995974, '81419670568465864814', 0 union all
select 2995974, '81419670571664371678', 0 union all
select 2995974, '81419670568441494203', 0 union all
select 2995974, '81419670573703222174', 0 union all
select 2995974, '81419670574988061189', 0 union all
select 2995974, '81419670569002206091', 0 union all
select 2995974, '81419670573044551941', 0 union all
select 2995974, '81419670567728585350', 0 union all
select 2995974, '81419670571035640105', 0 union all
select 2995974, '81419670576664810900', 0 union all
select 2995974, '81419670571430405293', 0 union all
select 2995974, '81419670575869087500', 0 union all
select 2995974, '81419670575890331625', 0 union all
select 2995974, '81419670569459520874', 0 union all
select 2995974, '81419670573709024618', 0 union all
select 2995974, '81419670575417342131', 0 union all
select 2995974, '81419670567622964203', 0 union all
select 2995974, '81419670572626956687', 0 union all
select 2995974, '81419670576195772019', 0 union all
select 2995974, '81419670570198750013', 0 union all
select 2995974, '81419670572037764667', 0 union all
select 2995974, '81419670575512527854', 0 union all
select 2995974, '81419670568452785190', 0 union all
select 2995974, '81419670571251144848', 0 union all
select 2995974, '81419670575235764766', 0 union all
select 2995974, '81419670573052548380', 0 union all
select 2995974, '81419670569919678375', 0 union all
select 2995974, '81419670575401066878', 0 union all
select 2995974, '81419670575600895598', 0 union all
select 2995974, '81419670567636271195', 0 union all
select 2995974, '81419670574019496739', 0 union all
select 2995974, '81419670576512854067', 0 union all
select 2995974, '81419670569003494117', 0 union all
select 2995974, '81419670575407245797', 0 union all
select 2995974, '81419670570953474751', 0 union all
select 2995974, '81419670573759059428', 0 union all
select 2995974, '81419670567415872945', 0 union all
select 2995974, '81419670567116101057', 0 union all
select 2995974, '81419670571853684739', 0 union all
select 2995974, '81419670574381862922', 0 union all
select 2995974, '81419670568856792181', 0 union all
select 2995974, '81419670574714324029', 0 union all
select 2995974, '81419670571421884259', 0 union all
select 2995974, '81419670574247712559', 0 union all
select 2995974, '81419670575599350781', 0 union all
select 2995974, '81419670574748899490', 0 union all
select 2995974, '81419670575629222128', 0 union all
select 2995974, '81419670567489351145', 0 union all
select 2995974, '81419670575596257502', 0 union all
select 2995974, '81419670572077624268', 0
我看了上面的代码能实现你上面的那个图的需求,你是想用其他的办法实现?
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
每一项的格式如下

<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns:xsi="http://www1.drugadmin.com" Version="3.0" SN="computer" License="license">
  <Event ID="StockIn">
    <Bill FromCorpID="00000000000000043621" ActDate="2014-01-20T16:28:58.617" Actor="蔡琳" CorpOrderID="2995975" BillID="20130002995975" Name="102">
      <DataField>
        <Data UpperCorpOrderID="" Code="81206620073443503824" />
        <Data UpperCorpOrderID="" Code="81206620073443470219" />
        <Data UpperCorpOrderID="" Code="81206620073443499601" />
      </DataField>
    </Bill>
  </Event>
</Document>
-Tracy-McGrady- 2014-01-20
  • 打赏
  • 举报
回复
其实我想要的想过是这样的

但是是用的sql语句有点复杂,求重新帮忙啊。

with cte as(
select '00000000000000043621' as FromCorpID,getdate() as ActDate,'蔡琳' as Actor,t1.ydh as CorpOrderID,'2013'+right('0000000000'+cast(t1.ydh as varchar),10) as BillID,'102' as Name,
cast((select '' as UpperCorpOrderID,t2.yjm as Code from ypls.dbo.spgj_yjm t2 where t2.flag=0 and t1.ydh=t2.ydh for xml raw('Data')) as xml) DataField
from ypls.dbo.spgj_yjm t1
where t1.flag=0
group by t1.ydh
)
select CorpOrderID
,cast('<Document xmlns:xsi="http://www1.drugadmin.com" Version="3.0" SN="computer" License="license"><Event ID="StockIn">'+
(select * from cte t2 with(nolock) where t1.CorpOrderID=t2.CorpOrderID for xml raw('Bill'))+'</Event></Document>' as xml)as xmlCol
from cte t1 with(nolock)
group by CorpOrderID

数据如下

create table spgj_yjm(ydh int,yjm varchar(20),flag int)
insert into spgj_yjm(ydh,yjm,flag)
select 2986257, '81053100420710742042', 0 union all
select 2986257, '81053100345474414914', 0 union all
select 2986257, '81053100345407630079', 0 union all
select 2986257, '81053100420710626059', 0 union all
select 2986257, '81053100345090719079', 0 union all
select 2986257, '81362950039343829966', 0 union all
select 2986257, '81362950039059747590', 0 union all
select 2986257, '81362950039278683351', 0 union all
select 2986257, '81362950039481176662', 0 union all
select 2986257, '81362950035147001616', 0 union all
select 2986257, '81362950034626317707', 0 union all
select 2986257, '81362950039799701376', 0 union all
select 2986257, '81362950039927332623', 0 union all
select 2986257, '81362950039893599528', 0 union all
select 2986257, '81362950039113920380', 0 union all
select 2986257, '81476910211407935898', 0 union all
select 2986257, '81476910211407935898', 0 union all
select 2986257, '81476910097890889250', 0 union all
select 2986257, '81419670574806084646', 0 union all
select 2986257, '81419670570800837414', 0 union all
select 2986257, '81419670576219782529', 0 union all
select 2986257, '81419670572037813949', 0 union all
select 2986257, '81419670568375687887', 0 union all
select 2995975, '81206620073443503824', 0 union all
select 2995975, '81206620073443470219', 0 union all
select 2995975, '81206620073443499601', 0 union all
select 2995974, '81311630034496251611', 0 union all
select 2995974, '81311630034496822406', 0 union all
select 2995974, '81311630034496872428', 0 union all
select 2995974, '81311630034496797857', 0 union all
select 2995974, '81311630034677491438', 0 union all
select 2995974, '81311630034496802588', 0 union all
select 2995974, '81311630034496812356', 0 union all
select 2995974, '81311630034680372827', 0 union all
select 2995974, '81311630034496850861', 0 union all
select 2995974, '81311630034496861165', 0 union all
select 2995974, '81311630034677480463', 0 union all
select 2995974, '81311630034680390993', 0 union all
select 2995974, '81605280127535045624', 0 union all
select 2995974, '81605280127463070629', 0 union all
select 2995974, '81605280127537065416', 0 union all
select 2995974, '81605280127464511002', 0 union all
select 2995974, '81605280127428491931', 0 union all
select 2995974, '81605280127465590151', 0 union all
select 2995974, '81605280127464871653', 0 union all
select 2995974, '81605280127535221920', 0 union all
select 2995974, '81605280127427235970', 0 union all
select 2995974, '81605280127472761856', 0 union all
select 2995974, '81605280127460732584', 0 union all
select 2995974, '81605280127463791356', 0 union all
select 2995974, '81605280127426874334', 0 union all
select 2995974, '81605280127463254606', 0 union all
select 2995974, '81605280127535940173', 0 union all
select 2995974, '81605280127539541185', 0 union all
select 2995974, '81605280127463619787', 0 union all
select 2995974, '81605280127464159628', 0 union all
select 2995974, '81605280127536485123', 0 union all
select 2995974, '81605280127461276246', 0 union all
select 2995974, '81605280127463431091', 0 union all
select 2995974, '81605280127533967268', 0 union all
select 2995974, '81605280127533428059', 0 union all
select 2995974, '81605280127534147380', 0 union all
select 2995974, '81605280127539002267', 0 union all
select 2995974, '81605280127534506824', 0 union all
select 2995974, '81605280127427956164', 0 union all
select 2995974, '81605280127472581208', 0 union all
select 2995974, '81605280127537607374', 0 union all
select 2995974, '81605280127427419772', 0 union all
select 2995974, '81605280127428315154', 0 union all
select 2995974, '81605280127345877748', 0 union all
select 2995974, '81605280127171837163', 0 union all
select 2995974, '81605280127426338395', 0 union all
select 2995974, '81605280127460913138', 0 union all
select 2995974, '81605280127461452218', 0 union all
select 2995974, '81605280127539901726', 0 union all
select 2995974, '81605280127465415833', 0 union all
select 2995974, '81605280127534323242', 0 union all
select 2995974, '81605280127345694603', 0 union all
select 2995974, '81605280127537962717', 0 union all
select 2995974, '81605280127427591245', 0 union all
select 2995974, '81605280127536307424', 0 union all
select 2995974, '81605280127536883412', 0 union all
select 2995974, '81605280127539182095', 0 union all
select 2995974, '81605280127536666302', 0 union all
select 2995974, '81605280127462178238', 0 union all
select 2995974, '81605280127462530869', 0 union all
select 2995974, '81419670566978456179', 0 union all
select 2995974, '81419670567631216369', 0 union all
select 2995974, '81419670566871919395', 0 union all
select 2995974, '81419670568193533020', 0 union all
select 2995974, '81419670575311965521', 0 union all
select 2995974, '81419670574718171679', 0 union all
select 2995974, '81419670571761932295', 0 union all
select 2995974, '81419670573716174759', 0 union all
select 2995974, '81419670575655744424', 0 union all
select 2995974, '81419670568116444607', 0 union all
select 2995974, '81419670568767948620', 0 union all
select 2995974, '81419670567897893551', 0 union all
select 2995974, '81419670571439491486', 0 union all
select 2995974, '81419670575798074186', 0 union all
select 2995974, '81419670568465864814', 0 union all
select 2995974, '81419670571664371678', 0 union all
select 2995974, '81419670568441494203', 0 union all
select 2995974, '81419670573703222174', 0 union all
select 2995974, '81419670574988061189', 0 union all
select 2995974, '81419670569002206091', 0 union all
select 2995974, '81419670573044551941', 0 union all
select 2995974, '81419670567728585350', 0 union all
select 2995974, '81419670571035640105', 0 union all
select 2995974, '81419670576664810900', 0 union all
select 2995974, '81419670571430405293', 0 union all
select 2995974, '81419670575869087500', 0 union all
select 2995974, '81419670575890331625', 0 union all
select 2995974, '81419670569459520874', 0 union all
select 2995974, '81419670573709024618', 0 union all
select 2995974, '81419670575417342131', 0 union all
select 2995974, '81419670567622964203', 0 union all
select 2995974, '81419670572626956687', 0 union all
select 2995974, '81419670576195772019', 0 union all
select 2995974, '81419670570198750013', 0 union all
select 2995974, '81419670572037764667', 0 union all
select 2995974, '81419670575512527854', 0 union all
select 2995974, '81419670568452785190', 0 union all
select 2995974, '81419670571251144848', 0 union all
select 2995974, '81419670575235764766', 0 union all
select 2995974, '81419670573052548380', 0 union all
select 2995974, '81419670569919678375', 0 union all
select 2995974, '81419670575401066878', 0 union all
select 2995974, '81419670575600895598', 0 union all
select 2995974, '81419670567636271195', 0 union all
select 2995974, '81419670574019496739', 0 union all
select 2995974, '81419670576512854067', 0 union all
select 2995974, '81419670569003494117', 0 union all
select 2995974, '81419670575407245797', 0 union all
select 2995974, '81419670570953474751', 0 union all
select 2995974, '81419670573759059428', 0 union all
select 2995974, '81419670567415872945', 0 union all
select 2995974, '81419670567116101057', 0 union all
select 2995974, '81419670571853684739', 0 union all
select 2995974, '81419670574381862922', 0 union all
select 2995974, '81419670568856792181', 0 union all
select 2995974, '81419670574714324029', 0 union all
select 2995974, '81419670571421884259', 0 union all
select 2995974, '81419670574247712559', 0 union all
select 2995974, '81419670575599350781', 0 union all
select 2995974, '81419670574748899490', 0 union all
select 2995974, '81419670575629222128', 0 union all
select 2995974, '81419670567489351145', 0 union all
select 2995974, '81419670575596257502', 0 union all
select 2995974, '81419670572077624268', 0
-Tracy-McGrady- 2014-01-17
  • 打赏
  • 举报
回复
引用 20 楼 DBA_Huangzj 的回复:
你只要这部分?
全部
-Tracy-McGrady- 2014-01-17
  • 打赏
  • 举报
回复
引用 20 楼 DBA_Huangzj 的回复:
你只要这部分?

我要这样的

效果
發糞塗牆 2014-01-17
  • 打赏
  • 举报
回复
你只要这部分?<DataField> <Data UpperCorpOrderID="" Code="81206620073443503824"/> <Data UpperCorpOrderID="" Code="81206620073443470219"/> <Data UpperCorpOrderID="" Code="81206620073443499601"/> </DataField>
-Tracy-McGrady- 2014-01-17
  • 打赏
  • 举报
回复
引用 17 楼 DBA_Huangzj 的回复:
拿来吧,我私信你,发我邮箱
已发,请查收,谢谢亲。爱你
-Tracy-McGrady- 2014-01-17
  • 打赏
  • 举报
回复
引用 17 楼 DBA_Huangzj 的回复:
拿来吧,我私信你,发我邮箱
好,我写好发你邮箱.
發糞塗牆 2014-01-17
  • 打赏
  • 举报
回复
拿来吧,我私信你,发我邮箱
加载更多回复(44)

34,838

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server相关内容讨论专区
社区管理员
  • 基础类社区
  • 二月十六
  • 卖水果的net
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧