08 2018 档案

SQL Server 将一个表中字段的值复制到另一个表的字段中
摘要:具体方法如下 一:update 表2 set (要插入的列名)= select 表1.某一列 from 表1 left jion 表2 on 表1和表2的关联 where ..... 二:update 表1 set 表1.列=表2.列 from 表2 where 表2.id=表1.id 三:upda 阅读全文

posted @ 2018-08-15 11:23 Zcp_Zcp 阅读(1722) 评论(0) 推荐(0)

Web Services 根据wsdl生成代理类
摘要:生成代理类步骤: 一:找到Visual Studio 的工具文件夹 二:用管理员方式打开本机工具命令提示 三:输入要执行的脚本 wsdl /language:C# /n:xxxx.HermesMobileWebService /out:C:\BaServiceClient.cs http://hb- 阅读全文

posted @ 2018-08-14 10:56 Zcp_Zcp 阅读(341) 评论(0) 推荐(0)

导航