上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: sql题 如何统计查询一个月中每天的记录 怎么写啊?写出来啊! 比如说要查2010年3月份每天的记录 答案 select count(*),substr(t.date,1,10) from table t where t.date like '2010-03%' group by substr(t. 阅读全文
posted @ 2016-09-26 11:41 Jack He 阅读(3006) 评论(0) 推荐(0) 编辑
摘要: 记录如何在本地配置SQL Server 2008 R2 Reporting Services,笔者环境为Windows 7 64位 + SQL Server 2008 R2 一、准备工作 其实准备工作很简单,只需通过Microsoft SQL Server 2008 R2 -> Configurat 阅读全文
posted @ 2016-09-20 10:35 Jack He 阅读(492) 评论(0) 推荐(1) 编辑
摘要: 1、取字符串的前i个字符 (1)string str1=str.Substring(0,i); (2)string str1=str.Remove(i,str.Length-i); 2、去掉字符串的前i个字符 string str1=str.Remove(0,i); string str1=str.SubString(i); 3、从右边开始取i个字符: string str1=st... 阅读全文
posted @ 2016-09-09 11:46 Jack He 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 错误 严重性 是否记录事件 说明(消息正文) 17000 10 否 用法: sp_autostats <table_name> [, {ON|OFF} [, <index_name>] ] 17001 16 是 无法针对会话句柄 '%s' 发送类型为 '%s' 的事件通知实例。错误代码 = '%s' 阅读全文
posted @ 2016-08-25 16:30 Jack He 阅读(1736) 评论(0) 推荐(0) 编辑
摘要: --主键constraint PK_字段 primary key(字段),--唯一约束constraint UK_字段 unique key(字段),--默认约束constrint DF_字段 default('默认值') for 字段,--检查约束constraint CK_字段 check(约束 阅读全文
posted @ 2016-08-25 15:43 Jack He 阅读(8889) 评论(0) 推荐(0) 编辑
摘要: 最近简单的对oracle,mysql,sqlserver2005的数据分页查询作了研究,把各自的查询的语句贴出来供大家学习..... (一)、 mysql的分页查询 mysql的分页查询是最简单的,借助关键字limit即可实现查询,查询语句通式: 如下面的截图,每页显示的记录数为20: 查询(1-2 阅读全文
posted @ 2016-08-18 00:18 Jack He 阅读(1692) 评论(0) 推荐(1) 编辑
摘要: 话不多说想看代码,在细说。 前台,很简单。主要看后台 后台,注意注释说明。 淘淘实惠多九块九包邮网(http://www.taohuiduo.com) 阅读全文
posted @ 2016-03-22 15:44 Jack He 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 淘淘实惠多-http://www.taohuiduo.com 专注独家折扣、1折特卖、9块9包邮、品牌折扣、20元封顶、全场包邮,所有的促销商品包括男装、女装、箱包配饰、母婴、日用、化妆品、数码、男鞋女鞋等均来自淘宝天猫、不知道怎么搭配衣服的还可以查看穿衣搭配喔。每天都有新品上线!同样的质量, 同样 阅读全文
posted @ 2016-01-31 00:36 Jack He 阅读(215) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Web;namespace 求md5{ class Program { static void Main(string[... 阅读全文
posted @ 2015-02-26 22:23 Jack He 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: 1、java智能提示(1). 打开Eclipse,选择打开" Window - Preferences"。(2). 在目录树上选择"Java-Editor-Content Assist",在右侧的"Auto-Activation"找到"Auto Activation triggers for jav... 阅读全文
posted @ 2014-10-27 23:30 Jack He 阅读(224) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页