`
文章列表

oracle ----sql语句

需求: A:交易表 B:提现表 交易表中的提现数据状态就一个,要确定该提现最终状态需要到提现表里面根据该订单的billno匹配对应的提现数据,该sql语句查询的是所有成功的订单信息分页【其中包含提现成功和其他操作成功】 SELECT C.*  FROM (SELECT B.*          FROM (SELECT A.*, rownum rn                  FROM (select TblWebBillDtl.SEQ_NO             as seqNo,                               TblWebBillDtl.INT ...
验证规则:$("#regprotrol").prop("checked") == true regprotrol : function (element, param, field) {                //if ($('#checkbox-id').attr('checked')) {                    if($("#regprotrol").prop("checked") == true){                        return true;        ...
Select t2.username, t2.sid, t2.serial#, t2.logon_time   from v$locked_object t1, v$session t2 where t1.session_id = t2.sid; alter system kill session '190,13971'; 其中190 为sid 的值,13971是serial的值
String browser=request.getHeader("User-Agent");
//判断IE11浏览器 var isIE =navigator.userAgent.toLowerCase().search(/(msie\s|trident.*rv:)([\w.]+)/)!=-1;  if(isIE){ $("#IEDiv").show(); } //判断当前浏览器的类型 //IE     if(navigator.userAgent.indexOf("MSIE")>0) {     //判断当前IE浏览器的版本     if(navigator.appVersion.match(/9 ...
var isIE =navigator.userAgent.toLowerCase().search(/(msie\s|trident.*rv:)([\w.]+)/)!=-1;  返回值是boolean 值。
一、SiteMesh项目简介       OS(OpenSymphony)的SiteMesh是一个用来在JSP中实现页面布局和装饰(layout and decoration) 的框架组件,能够帮助网站开发人员较容易实现页面中动态内容和静态装饰外观的分离。        Sitemesh是由一个基 ...
dos下进入到apache 的bin目录下,httpd -k install -n 服务名称 httpd -k -install 默认服务名称为安装的apache的名称 删除apache服务 httpd -k -uninstall -n 服务名称 或 httpd -k- uninstall
为单个Web应用 配置超时时间可以在web.xml中使用<session-config>元素,如 <web-app> <!–filter.listener,servlet,and servlet- mapping等元素要在session-config之前–> <session-config> <session-timeout>15 </session-timeout> </session-config> … </web-app> 这个时候的“15”单位是分钟! 如果在配置Servlet是指 ...
    System.out.println("===========os.name:"+System.getProperties().getProperty("os.name"));      System.out.println("===========file.separator:"+System.getProperties().getProperty("file.separator"));  System类 public static Properties getProperties() 将 ge ...
先来看以下代码: var flag=true; var index=0; $.ajax({ url: "http://www.baidu.com/", success: function(data){ flag=false; } }); while(flag){ index++; } alert(index); 请问最后alert的index的结果是多少? 可能有人会说0呗。实际上却没那么简单。大 ...
var nowdoc=parent.parent.document; var hei=jq(nowdoc).height(); //最顶级页面的高度 var wid=jq(nowdoc1).width();
修改MyEclipse的配置文件,在myeclipse的安装目录下,myeclipse.ini,就是这个配置文件,打开,添加一句: -Dfile.encoding=UTF-8 好了,重启MyEclipse,可以在控制台输入中文显示中文。 PS:使用这个方法,可能会导致命令行中java的输入为乱码,没办法,如果要用到命令行的控制台再改一下就行了。
今天在用struts2在做项目时候,从一个action我想跳转到另一个action,并且呢得带上值。说说我的做法吧,首先你得在你的第一个action中这个id必须要有set、get方法。 跳转时你的struts.xml: (方法一): <result name="topic" type="redirect">/topicAction!findTopics.do?topicId=${topicId}</result> (方法二): <result name="topic" type="redirec ...
Alter table 表名 add unique(列名);
Global site tag (gtag.js) - Google Analytics