2017年2月16日
摘要: 1.查询重复记录单字段 select * from tbl a where exists(select 1 from tbl b where a.username=b.username group by username having count(*) > 1) 2.查询重复次数 select cl 阅读全文
posted @ 2017-02-16 18:09 疯狂的小馒头 阅读(381) 评论(0) 推荐(0) 编辑
  2017年2月15日
摘要: /*查询字段所在的表/视图*/select a.name as 表名 from sysobjects as a left join syscolumns as b on a.id=b.id where b.name='字段名' 阅读全文
posted @ 2017-02-15 16:21 疯狂的小馒头 阅读(183) 评论(0) 推荐(0) 编辑
摘要: /*查询某张表被哪些存储过程或者视图用到的sql语句*/select distinct object_name(id) from syscomments where id in (select id from sysobjects where type in('V','P')) and text l 阅读全文
posted @ 2017-02-15 16:20 疯狂的小馒头 阅读(227) 评论(0) 推荐(0) 编辑
摘要: char char是定长的,也就是当你输入的字符小于你指定的数目时,char(8),你输入的字符小于8时,它会再后面补空值。当你输入的字符大于指定的数时,它会截取超出的字符。 nvarchar(n) 包含 n 个字符的可变长度 Unicode 字符数据。n 的值必须介于 1 与 4,000 之间。字 阅读全文
posted @ 2017-02-15 16:12 疯狂的小馒头 阅读(233) 评论(0) 推荐(0) 编辑
  2016年8月30日
摘要: 快速获取图片的宽高其实是为了预先做好排版样式布局做准备,通过快速获取图片宽高的方法比onload方法要节省很多时间,甚至一分钟以上都有可能,并且这种方法适用主流浏览器包括IE低版本浏览器。 我们一步一步进入这个过程。 一、简陋的获取图片方式 1 2 3 4 5 6 7 8 9 10 11 // 图片 阅读全文
posted @ 2016-08-30 13:31 疯狂的小馒头 阅读(193) 评论(0) 推荐(0) 编辑
  2016年7月23日
摘要: 在发布这个配置文件的时候,会发生代码冲突: error: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit your cha 阅读全文
posted @ 2016-07-23 21:43 疯狂的小馒头 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 先大概描述一下要做的界面: 从网络请求json数据,获取网络图征数据,然后轮播图片。我遇到的问题是:图片不显示,代码如下 <ion-slide-box does-continue="true" show-pager="true" auto-play="true" slide-interval="10 阅读全文
posted @ 2016-07-23 20:51 疯狂的小馒头 阅读(505) 评论(0) 推荐(0) 编辑
  2016年7月11日
摘要: select date '2010-1-1'+level-1 dates from dual connect by level <date '2010-1-10' -date '2010-1-1'+2 order by dates; 阅读全文
posted @ 2016-07-11 14:21 疯狂的小馒头 阅读(221) 评论(0) 推荐(0) 编辑
  2016年7月7日
摘要: Subscriber:accptechSubscription Code:nLR8ZC-855550-6765855429037911 Subscriber:Hello World Subscription Code:ULR8ZC-855550-63545256071330911 阅读全文
posted @ 2016-07-07 14:08 疯狂的小馒头 阅读(339) 评论(0) 推荐(0) 编辑
  2016年7月5日
摘要: 网页中图片旋转一般有下面三种常见的实现方式: 一、 ie 滤镜 IE的图形旋转滤镜,通过指定BasicImage滤镜的rotation值旋转元素,旋转方向为顺时针,旋转的中心点为元素的左上角。rotation可以有4个旋转值:0, 1, 2,和3分别表示将元素旋转0度、90度、180度、270度。 阅读全文
posted @ 2016-07-05 17:02 疯狂的小馒头 阅读(2311) 评论(0) 推荐(0) 编辑