码迷,mamicode.com
首页 >  
搜索关键字:INDEX SCAN    ( 41471个结果
oracle解决多表关联分组查询问题
做了一个功能需要分组查询,同时查询A表分组查询的ID需要关联B表的数据,本来想两个表关联查询,但是报group by 语法不正确。所以做了以下修改。select count(*),cindexid,(select vindexcode from comindex where pk_index =ci...
分类:数据库   时间:2014-07-09 20:04:57    阅读次数:224
学习笔记
一、自己记录的知识点1.this.index == oBtn.length - 1 && (oDiv.style.cssText = ""); //&&的条件操作符功能,cssText获取行间样式2.oLink['href'] = this.id + ".css"; //href及id等...
分类:其他好文   时间:2014-07-09 19:23:44    阅读次数:192
linux同步windows的时间
找了很多的资料,都没有windows做时间服务,linux同步windows的时间的,最后自己找了一些软件,终于搞定了,写出来给大家共享,以免大家多走弯路 首先在http://www.meinberg.de/english/sw/index.htm 下载了一个windows的NTP服务程序:nt.....
分类:Windows程序   时间:2014-07-09 17:33:04    阅读次数:312
lua中冒号(:)与点号(.)的区别
在lua开发中我们经常会混淆这两者之间的区别,下面通过一个示例来解释: 1 Class = {} 2 Class.__index = Class 3 4 function Class.new(x,y) 5 local cls = {} 6 setmetatable(cls, C...
分类:其他好文   时间:2014-07-09 16:51:47    阅读次数:143
hdu1269 Tarjan强连通分量 模板(转)
#include#include#includeusing namespace std;const int maxn=10010;vectorg[maxn];int Bcnt;int Top;int Index;int low[maxn],dfn[maxn];int belong[maxn],sta...
分类:其他好文   时间:2014-07-09 14:01:38    阅读次数:163
七、mysql索引选择
1.myisam,bdb,innodb,memory 单表至少支持16个索引2.create index id_index on emp (id) 为emp表创建一个名为id_index的id字段的索引3.drop index id_index on emp 删除emp表的id_index 索引4....
分类:数据库   时间:2014-07-08 22:42:14    阅读次数:306
oracle 知识
1.查询索引数量select table_name, count(*) cnt from user_indexes where index_type='NORMAL' group by table_namehaving count(*) >= 1order by cnt desc ;2.查询外键未....
分类:数据库   时间:2014-07-08 22:40:18    阅读次数:308
jQueryt过滤选择器
jQueryt过滤选择器基本过滤选择器选择器描述返回示例重要:first返回第一个元素单个元素:last返回最后一个元素单个元素:not(selector)除去与给定选择器匹配的元素集合元素☆:even偶数元素集合元素:odd奇数元素集合元素:eq(index)返回集合中指定索引的元素,索引0开始单...
分类:Web程序   时间:2014-07-08 21:53:29    阅读次数:364
UVa10340.All in All
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=12811384599010340All in AllAcceptedC++0.0262014-07...
分类:其他好文   时间:2014-07-08 21:50:11    阅读次数:230
nginx rewrite 之后的url不带参数
rewrite(.*)http://192.168.1.22/index.htm?permanent;nginxrewrtie的时候会带上参数,在结尾带上?的话,nginx将丢弃请求中的参数。
分类:其他好文   时间:2014-07-08 08:54:01    阅读次数:683
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!