上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: 很多人在做数据的批量更新时..如果更新的内容是从其他表查出来的..很容易这么写.. 这样的结构对于一般的小数据更新当然是没问题的..因为体现不出劣势.. 但是到了数据量大了的时候..特别在后边的查询时..量大并且结构复杂的时候.. 那一定会自食恶果..你就等吧..一条T-SQL执行个把小时..甚至计 阅读全文
posted @ 2018-11-09 12:31 (john_zhang) 阅读(1879) 评论(0) 推荐(0) 编辑
摘要: 原文出处:https://www.cnblogs.com/landeanfen/p/4627383.html 从使用序列化到现在,用到的无非下面几种方式:(1)JavaScriptSerializer方式;(2)DataContract方式;(3)Newtonsoft.Json. 1、准备工作:要对 阅读全文
posted @ 2018-09-20 10:14 (john_zhang) 阅读(5687) 评论(0) 推荐(0) 编辑
摘要: --SQL2005静态写法--创建测试数据create table Test(月份 varchar(4), 工资 int, 福利 int, 奖金 int)insert Testselect '1月',100,200,300 union allselect '2月',110,210,310 union 阅读全文
posted @ 2018-09-10 12:31 (john_zhang) 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 创建表scores 一、传统的行列转换 纵表转横表 我们要转成的横表是这样子的: pivot是sql server 2005 提供的运算符,所以只要数据库在05版本以上的都可以使用。主要用于行和列的转换。 pivot纵表转横表 select t2.姓名, t2.数学, t2.物理, t2.语文fro 阅读全文
posted @ 2018-09-10 12:28 (john_zhang) 阅读(4373) 评论(0) 推荐(0) 编辑
摘要: 在AssemblyInfo.cs文件中添加[assembly: log4net.Config.XmlConfigurator(Watch = true)]; 或者在Global.asax文件中执行: void Application_Start(object sender, EventArgs e) 阅读全文
posted @ 2018-08-27 15:34 (john_zhang) 阅读(149) 评论(0) 推荐(0) 编辑
摘要: .input:hover,.input:focus{ border:1px solid #85afe1; -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6); box-shad 阅读全文
posted @ 2018-08-07 19:27 (john_zhang) 阅读(5653) 评论(0) 推荐(0) 编辑
摘要: 一般在创建WCF服务时会用Serivce.svc文件访问,地址如:http://localhost/applicationname/Serivce.svc/Name 现在用路由映射成:http://localhost/applicationname/MyService/Name 方法如下: 首先在G 阅读全文
posted @ 2018-08-02 09:42 (john_zhang) 阅读(451) 评论(0) 推荐(0) 编辑
摘要: // 对Date的扩展,将 Date 转化为指定格式的String// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) Date.prototype.Forma 阅读全文
posted @ 2018-08-01 10:16 (john_zhang) 阅读(27155) 评论(0) 推荐(2) 编辑
摘要: (function ($, undefined) { $.fn.getCursorPosition = function () { var el = $(this).get(0); var pos = 0; if ('selectionStart' in el) { pos = el.selecti 阅读全文
posted @ 2018-07-13 17:24 (john_zhang) 阅读(4439) 评论(0) 推荐(0) 编辑
摘要: sublime text3安装后html:5+Tab不能快速生成html头部信息的解决办法: 需要下载Emmet插件,按网上写的步骤按ctrl+shift+P打开命令面板,输入install,鼠标点击下面出来的Package Control:Install Package. 不过查找插件时,却弹出以 阅读全文
posted @ 2018-06-05 23:48 (john_zhang) 阅读(1037) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页