pbootcms网站模板|日韩1区2区|织梦模板||网站源码|日韩1区2区|jquery建站特效-html5模板网

  • <legend id='uXaaa'><style id='uXaaa'><dir id='uXaaa'><q id='uXaaa'></q></dir></style></legend>

    <small id='uXaaa'></small><noframes id='uXaaa'>

      <tfoot id='uXaaa'></tfoot>
        <bdo id='uXaaa'></bdo><ul id='uXaaa'></ul>
    1. <i id='uXaaa'><tr id='uXaaa'><dt id='uXaaa'><q id='uXaaa'><span id='uXaaa'><b id='uXaaa'><form id='uXaaa'><ins id='uXaaa'></ins><ul id='uXaaa'></ul><sub id='uXaaa'></sub></form><legend id='uXaaa'></legend><bdo id='uXaaa'><pre id='uXaaa'><center id='uXaaa'></center></pre></bdo></b><th id='uXaaa'></th></span></q></dt></tr></i><div class="lhhjltr" id='uXaaa'><tfoot id='uXaaa'></tfoot><dl id='uXaaa'><fieldset id='uXaaa'></fieldset></dl></div>

      1. 如何從sql中的給定xml中獲取'/'分隔的節點

        how to fetch #39;/#39; separated node/tag name from a given xml in sql(如何從sql中的給定xml中獲取/分隔的節點/標簽名稱)

        1. <tfoot id='z1V8h'></tfoot>
          • <bdo id='z1V8h'></bdo><ul id='z1V8h'></ul>

                  <tbody id='z1V8h'></tbody>
              • <i id='z1V8h'><tr id='z1V8h'><dt id='z1V8h'><q id='z1V8h'><span id='z1V8h'><b id='z1V8h'><form id='z1V8h'><ins id='z1V8h'></ins><ul id='z1V8h'></ul><sub id='z1V8h'></sub></form><legend id='z1V8h'></legend><bdo id='z1V8h'><pre id='z1V8h'><center id='z1V8h'></center></pre></bdo></b><th id='z1V8h'></th></span></q></dt></tr></i><div class="jfnrtjd" id='z1V8h'><tfoot id='z1V8h'></tfoot><dl id='z1V8h'><fieldset id='z1V8h'></fieldset></dl></div>

                  <small id='z1V8h'></small><noframes id='z1V8h'>

                  <legend id='z1V8h'><style id='z1V8h'><dir id='z1V8h'><q id='z1V8h'></q></dir></style></legend>

                • 本文介紹了如何從sql中的給定xml中獲取'/'分隔的節點/標簽名稱的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我想從給定的 xml 中獲取以 '/' 分隔的節點名稱,以便只獲取節點/標簽名稱,而不是從給定的 xml 中獲取節點/標簽值.

                  i want to fetch '/' separated node name from a given xml such that only node/tag name are getting fetched instead of node/tag value from a given xml.

                  假設我有以下 xml :

                  Suppose if i have below xml :

                  <ns:manageWorkItemRequest>
                      <ns:wiFocus>
                          <act:orderDate>2020-03-16T10:30:56.000Z</act:orderDate>
                          <act:orderItem>
                              <agr:instance>
                                  <spec1:customerServiceIdentifier>ETHA15302121</spec1:customerServiceIdentifier>
                                  <spec1:instanceCharacteristic>
                                      <spec1:action>
                                          <spec1:code>Modify</spec1:code>
                                      </spec1:action>
                                      <spec1:instanceIdentifier>
                                          <spec1:value>OS014-AHEFV5T9</spec1:value>
                                  </spec1:instanceIdentifier>
                               </agr:instance>
                          </act:orderItem>
                          <act:orderVersion>1</act:orderVersion>
                      </ns:wiFocus>
                      <ns:wiAction>Create</ns:wiAction>
                      <ns:wiVersion>1</ns:wiVersion>
                  </ns:manageWorkItemRequest>
                  

                  我想要的結果是:

                  ns:manageWorkItemRequest/ns:wiFocus/act:orderItem/agr:instance/spec1:customerServiceIdentifier/ETHA15302121

                  ns:manageWorkItemRequest/ns:wiFocus/act:orderItem/agr:instance/spec1:customerServiceIdentifier/ETHA15302121

                  實際上的要求是,如果我在上面的 xml 中得到這個ETHA15302121"值,那么我應該顯示路徑,即該值在 xml 中的確切位置是 '/' 分隔格式.

                  actually the requirement is if i get this "ETHA15302121" value in above xml then i should show the path i.e. where exactly in xml that value is in '/' separated format.

                  推薦答案

                  您的 XML 格式不正確(中間缺少結束標記并且缺少命名空間聲明.

                  Your XML was not well-formed (missing closing tag in the middle and missing namespace declarations.

                  添加缺失的部分后,它看起來是這樣,你可以沿著這條路線嘗試一些東西(警告:這不會很快......):

                  After adding the missing parts it looks as so and you might try something along this route (warning: this won't be fast...):

                  您的 XML

                  DECLARE @xml XML=
                  N'<root xmlns:ns="dummy1" xmlns:act="dummy2" xmlns:agr="dummy3" xmlns:spec1="dummy4">
                    <ns:manageWorkItemRequest>
                      <ns:wiFocus>
                        <act:orderDate>2020-03-16T10:30:56.000Z</act:orderDate>
                        <act:orderItem>
                          <agr:instance>
                            <spec1:customerServiceIdentifier>ETHA15302121</spec1:customerServiceIdentifier>
                            <spec1:instanceCharacteristic>
                              <spec1:action>
                                <spec1:code>Modify</spec1:code>
                              </spec1:action>
                              <spec1:instanceIdentifier>
                                <spec1:value>OS014-AHEFV5T9</spec1:value>
                              </spec1:instanceIdentifier>
                            </spec1:instanceCharacteristic>
                          </agr:instance>
                        </act:orderItem>
                        <act:orderVersion>1</act:orderVersion>
                      </ns:wiFocus>
                      <ns:wiAction>Create</ns:wiAction>
                      <ns:wiVersion>1</ns:wiVersion>
                    </ns:manageWorkItemRequest>
                  </root>';
                  

                  --查詢

                  WITH AllNamespaces As
                  (
                      SELECT  CONCAT('ns',ROW_NUMBER() OVER(ORDER BY (B.namespaceUri))) Prefix
                             ,B.namespaceUri
                      FROM @xml.nodes('//*') A(nd)
                      CROSS APPLY(VALUES(A.nd.value('namespace-uri(.)','nvarchar(max)')))B(namespaceUri)
                      WHERE LEN(B.namespaceUri)>0
                      GROUP BY B.namespaceUri
                  )
                  ,recCte AS
                  (
                      SELECT 1 AS NestLevel
                            ,ROW_NUMBER() OVER(ORDER BY A.nd) AS ElementPosition
                            ,CAST(REPLACE(STR(ROW_NUMBER() OVER(ORDER BY A.nd),5),' ','0') AS VARCHAR(900)) COLLATE DATABASE_DEFAULT AS SortString
                            ,CONCAT(ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)'),'[',ROW_NUMBER() OVER(PARTITION BY CONCAT(ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)')) ORDER BY A.nd),']') AS FullName
                            ,CAST(CONCAT('/',ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)'),'[',ROW_NUMBER() OVER(PARTITION BY CONCAT(ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)')) ORDER BY A.nd),']') AS NVARCHAR(MAX)) COLLATE DATABASE_DEFAULT AS XPath
                            ,A.nd.value('text()[1]','nvarchar(max)') AS NodeValue
                            ,A.nd.query('./*') NextFragment
                      FROM @xml.nodes('/*') A(nd)
                      LEFT JOIN AllNamespaces ns ON ns.namespaceUri=A.nd.value('namespace-uri(.)','nvarchar(max)') 
                  
                      UNION ALL
                  
                      SELECT r.NestLevel+1
                            ,ROW_NUMBER() OVER(ORDER BY A.nd)  
                            ,CAST(CONCAT(r.SortString,REPLACE(STR(ROW_NUMBER() OVER(ORDER BY A.nd),5),' ','0')) AS VARCHAR(900)) COLLATE DATABASE_DEFAULT
                            ,CONCAT(ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)'),'[',ROW_NUMBER() OVER(PARTITION BY CONCAT(ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)')) ORDER BY A.nd),']') AS FullName
                            ,CONCAT(r.XPath,'/',ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)'),'[',ROW_NUMBER() OVER(PARTITION BY CONCAT(ns.Prefix+':',A.nd.value('local-name(.)','nvarchar(max)')) ORDER BY A.nd),']') AS FullName
                            ,A.nd.value('text()[1]','nvarchar(max)') AS NodeValue
                            ,A.nd.query('./*') NextFragment
                      FROM recCte r
                      CROSS APPLY NextFragment.nodes('*') A(nd)
                      OUTER APPLY(SELECT Prefix FROM AllNamespaces ns WHERE ns.namespaceUri=A.nd.value('namespace-uri(.)','nvarchar(max)')) ns
                  )
                  SELECT XPath
                        ,NodeValue
                        ,NestLevel
                        ,ElementPosition
                        ,SortString
                  FROM recCte
                  --WHERE NodeValue IS NOT NULL
                  ORDER BY SortString;
                  

                  --結果
                  /*

                  --The result
                  /*

                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | XPath                                                                                                                                                      | NodeValue                | NestLevel | ElementPosition | SortString                               |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | /root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderDate[1]                                                                                      | 2020-03-16T10:30:56.000Z | 4         | 1               | 00001000010000100001                     |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | /root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderItem[1]/ns3:instance[1]/ns4:customerServiceIdentifier[1]                                     | ETHA15302121             | 6         | 1               | 000010000100001000020000100001           |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | /root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderItem[1]/ns3:instance[1]/ns4:instanceCharacteristic[1]/ns4:action[1]/ns4:code[1]              | Modify                   | 8         | 1               | 0000100001000010000200001000020000100001 |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | /root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderItem[1]/ns3:instance[1]/ns4:instanceCharacteristic[1]/ns4:instanceIdentifier[1]/ns4:value[1] | OS014-AHEFV5T9           | 8         | 1               | 0000100001000010000200001000020000200001 |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | /root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderVersion[1]                                                                                   | 1                        | 4         | 3               | 00001000010000100003                     |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | /root[1]/ns1:manageWorkItemRequest[1]/ns1:wiAction[1]                                                                                                      | Create                   | 3         | 2               | 000010000100002                          |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  | /root[1]/ns1:manageWorkItemRequest[1]/ns1:wiVersion[1]                                                                                                     | 1                        | 3         | 3               | 000010000100003                          |
                  +------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+-----------+-----------------+------------------------------------------+
                  

                  */

                  --只是為了表明,創建的 XPath 按預期工作:

                  --just to show, that the created XPath is working as expected:

                  WITH XMLNAMESPACES('dummy1' AS ns1,'dummy2' AS ns2,'dummy3' AS ns3,'dummy4' AS ns4,'dummy5' AS ns5)
                  SELECT @xml.value('/root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderDate[1]','nvarchar(max)')
                        ,@xml.value('/root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderItem[1]/ns3:instance[1]/ns4:customerServiceIdentifier[1]','nvarchar(max)')
                        ,@xml.value('/root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderItem[1]/ns3:instance[1]/ns4:instanceCharacteristic[1]/ns4:action[1]/ns4:code[1]','nvarchar(max)')
                        ,@xml.value('/root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderItem[1]/ns3:instance[1]/ns4:instanceCharacteristic[1]/ns4:instanceIdentifier[1]/ns4:value[1]','nvarchar(max)')
                        ,@xml.value('/root[1]/ns1:manageWorkItemRequest[1]/ns1:wiFocus[1]/ns2:orderVersion[1]','nvarchar(max)')
                        ,@xml.value('/root[1]/ns1:manageWorkItemRequest[1]/ns1:wiAction[1]','nvarchar(max)')
                        ,@xml.value('/root[1]/ns1:manageWorkItemRequest[1]/ns1:wiVersion[1]','nvarchar(max)');
                  

                  簡單的想法:

                  • 命名空間前綴可以由您自己定義.底層 URI 很重要.
                  • 第一個 cte 將創建一組所有出現的 URI,并將其與前綴一起返回.
                  • 遞歸 CTE 將越來越深入地遍歷 XML.只要帶有 .nodes()APPLY 可以返回嵌套節點,這就會繼續.
                  • 全名與完整的 XPath 一樣.
                  • CAST 和 COLLATE 有助于避免數據類型不匹配(遞歸 CTE 對此非常挑剔).
                  • 需要串聯的 SortString 以確保輸出中的順序相同.
                  • The namespace prefixes can be defined by your own. The underlying URI is important.
                  • The first cte will create a set of all occuring URIs and return this together with a prefix.
                  • The recursive CTE will traverse deeper and deeper into the XML. This will continue as long as APPLY with .nodes() can return nested nodes.
                  • The full name is concatenated as well as the full XPath.
                  • The CASTs and COLLATEs help to avoid data type mismatch (recursive CTEs are very picky with this).
                  • The concatenated SortString is needed to ensure the same order in your output.

                  順便提一下:有絕對過時的FROM OPENXML,這是-afaik-從字面上恢復一切的唯一方法:

                  Just to mention it: There is the absolutely outdated FROM OPENXML, which is - afaik - the only way to get literally everything back:

                  DECLARE @xml XML=
                  N'<root xmlns="default" xmlns:ns="dummy">
                    <a ns:test="blah">blub</a>
                    <ns:b test2="hugo">blubber</ns:b>
                  </root>';
                  
                  DECLARE @DocHandle INT;
                  EXEC sp_xml_preparedocument @DocHandle OUTPUT, @xml;
                  SELECT * FROm OPENXML(@DocHandle,'/*');
                  EXEC sp_xml_removedocument @DocHandle;
                  

                  結果

                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | id | parentid | nodetype | localname | prefix | namespaceuri | datatype | prev | text    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 0  | NULL     | 1        | root      | NULL   | default      | NULL     | NULL | NULL    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 2  | 0        | 2        | xmlns     | xmlns  | NULL         | NULL     | NULL | NULL    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 10 | 2        | 3        | #text     | NULL   | NULL         | NULL     | NULL | default |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 3  | 0        | 2        | ns        | xmlns  | NULL         | NULL     | NULL | NULL    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 11 | 3        | 3        | #text     | NULL   | NULL         | NULL     | NULL | dummy   |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 4  | 0        | 1        | a         | NULL   | default      | NULL     | NULL | NULL    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 5  | 4        | 2        | test      | ns     | dummy        | NULL     | NULL | NULL    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 12 | 5        | 3        | #text     | NULL   | NULL         | NULL     | NULL | blah    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 6  | 4        | 3        | #text     | NULL   | NULL         | NULL     | NULL | blub    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 7  | 0        | 1        | b         | ns     | dummy        | NULL     | 4    | NULL    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 8  | 7        | 2        | test2     | NULL   | NULL         | NULL     | NULL | NULL    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 13 | 8        | 3        | #text     | NULL   | NULL         | NULL     | NULL | hugo    |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  | 9  | 7        | 3        | #text     | NULL   | NULL         | NULL     | NULL | blubber |
                  +----+----------+----------+-----------+--------+--------------+----------+------+---------+
                  

                  如您所見,此結果包含名稱空間、前綴和內容.但它很笨拙,離今天"還很遠.:-)

                  As you can see, this result contains namespaces, prefixes and content. But it is very clumsy and far away from "today" :-)

                  這篇關于如何從sql中的給定xml中獲取'/'分隔的節點/標簽名稱的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  SQL query to get all products, categories and meta data woocommerce/wordpress(獲取所有產品、類別和元數據的 SQL 查詢 woocommerce/wordpress)
                  Can I figure out a list of databases and the space used by SQL Server instances without writing SQL queries?(我可以在不編寫 SQL 查詢的情況下找出數據庫列表和 SQL Server 實例使用的空間嗎?) - IT屋-程序員軟件開發
                  How to create a login to a SQL Server instance?(如何創建對 SQL Server 實例的登錄?)
                  How to know the version and edition of SQL Server through registry search(如何通過注冊表搜索知道SQL Server的版本和版本)
                  Why do I get a quot;data type conversion errorquot; with ExecuteNonQuery()?(為什么會出現“數據類型轉換錯誤?使用 ExecuteNonQuery()?)
                  How to show an image from a DataGridView to a PictureBox?(如何將 DataGridView 中的圖像顯示到 PictureBox?)
                    <tbody id='DKJLQ'></tbody>

                  1. <small id='DKJLQ'></small><noframes id='DKJLQ'>

                  2. <i id='DKJLQ'><tr id='DKJLQ'><dt id='DKJLQ'><q id='DKJLQ'><span id='DKJLQ'><b id='DKJLQ'><form id='DKJLQ'><ins id='DKJLQ'></ins><ul id='DKJLQ'></ul><sub id='DKJLQ'></sub></form><legend id='DKJLQ'></legend><bdo id='DKJLQ'><pre id='DKJLQ'><center id='DKJLQ'></center></pre></bdo></b><th id='DKJLQ'></th></span></q></dt></tr></i><div class="777z7z7" id='DKJLQ'><tfoot id='DKJLQ'></tfoot><dl id='DKJLQ'><fieldset id='DKJLQ'></fieldset></dl></div>

                            <bdo id='DKJLQ'></bdo><ul id='DKJLQ'></ul>

                            <legend id='DKJLQ'><style id='DKJLQ'><dir id='DKJLQ'><q id='DKJLQ'></q></dir></style></legend>
                            <tfoot id='DKJLQ'></tfoot>
                            主站蜘蛛池模板: 南京泽朗生物科技有限公司 | 翅片管散热器价格_钢制暖气片报价_钢制板式散热器厂家「河北冀春暖气片有限公司」 | 脉冲除尘器,除尘器厂家-淄博机械 | 水成膜泡沫灭火剂_氟蛋白泡沫液_河南新乡骏华消防科技厂家 | 聚合甘油__盐城市飞龙油脂有限公司| 软文发布平台 - 云软媒网络软文直编发布营销推广平台 | 德国UST优斯特氢气检漏仪-德国舒赐乙烷检测仪-北京泽钏 | 北京翻译公司_同传翻译_字幕翻译_合同翻译_英语陪同翻译_影视翻译_翻译盖章-译铭信息 | 热缩管切管机-超声波切带机-织带切带机-无纺布切布机-深圳市宸兴业科技有限公司 | 防爆电机生产厂家,YBK3电动机,YBX3系列防爆电机,YBX4节防爆电机--河南省南洋防爆电机有限公司 | 上海公众号开发-公众号代运营公司-做公众号的公司企业服务商-咏熠软件 | 螺杆式冷水机-低温冷水机厂家-冷冻机-风冷式-水冷式冷水机-上海祝松机械有限公司 | 厂房出租_厂房出售_产业园区招商_工业地产&nbsp;-&nbsp;中工招商网 | 火锅底料批发-串串香技术培训[川禾川调官网] | 热镀锌槽钢|角钢|工字钢|圆钢|H型钢|扁钢|花纹板-天津千百顺钢铁贸易有限公司 | 塑料熔指仪-塑料熔融指数仪-熔体流动速率试验机-广东宏拓仪器科技有限公司 | 风淋室生产厂家报价_传递窗|送风口|臭氧机|FFU-山东盛之源净化设备 | 山东集装箱活动房|济南集装箱活动房-济南利森集装箱有限公司 | 微动开关厂家-东莞市德沃电子科技有限公司 | 砖机托板价格|免烧砖托板|空心砖托板厂家_山东宏升砖机托板厂 | 乐泰胶水_loctite_乐泰胶_汉高乐泰授权(中国)总代理-鑫华良供应链 | 临朐空调移机_空调维修「空调回收」临朐二手空调 | 银川美容培训-美睫美甲培训-彩妆纹绣培训-新娘化妆-学化妆-宁夏倍莱妮职业技能培训学校有限公司 临时厕所租赁_玻璃钢厕所租赁_蹲式|坐式厕所出租-北京慧海通 | 安全阀_弹簧式安全阀_美标安全阀_工业冷冻安全阀厂家-中国·阿司米阀门有限公司 | 薪动-人力资源公司-灵活用工薪资代发-费用结算-残保金优化-北京秒付科技有限公司 | 北京办公室装修,办公室设计,写字楼装修-北京金视觉装饰工程公司 北京成考网-北京成人高考网 | 济南网站建设|济南建网站|济南网站建设公司【济南腾飞网络】【荐】 | 防腐木批发价格_深圳_惠州_东莞防腐木厂家_森源(深圳)防腐木有限公司 | 磁力反应釜,高压釜,实验室反应釜,高温高压反应釜-威海自控反应釜有限公司 | 开业庆典_舞龙舞狮_乔迁奠基仪式_开工仪式-神挚龙狮鼓乐文化传媒 | 山东商品混凝土搅拌楼-环保型搅拌站-拌合站-分体仓-搅拌机厂家-天宇 | 塑胶跑道_学校塑胶跑道_塑胶球场_运动场材料厂家_中国塑胶跑道十大生产厂家_混合型塑胶跑道_透气型塑胶跑道-广东绿晨体育设施有限公司 | 郑州宣传片拍摄-TVC广告片拍摄-微电影短视频制作-河南优柿文化传媒有限公司 | 纳米涂料品牌 防雾抗污纳米陶瓷涂料厂家_虹瓷科技 | 数控专用机床,专用机床,自动线,组合机床,动力头,自动化加工生产线,江苏海鑫机床有限公司 | 能量回馈_制动单元_电梯节能_能耗制动_深圳市合兴加能科技有限公司 | 天津市能谱科技有限公司-专业的红外光谱仪_红外测油仪_紫外测油仪_红外制样附件_傅里叶红外光谱技术生产服务厂商 | 武汉刮刮奖_刮刮卡印刷厂_为企业提供门票印刷_武汉合格证印刷_现金劵代金券印刷制作 - 武汉泽雅印刷有限公司 | 赛默飞Thermo veritiproPCR仪|ProFlex3 x 32PCR系统|Countess3细胞计数仪|371|3111二氧化碳培养箱|Mirco17R|Mirco21R离心机|仟诺生物 | PCB厂|线路板厂|深圳线路板厂|软硬结合板厂|电路板生产厂家|线路板|深圳电路板厂家|铝基板厂家|深联电路-专业生产PCB研发制造 | 纸张环压仪-纸张平滑度仪-杭州纸邦自动化技术有限公司 |