`
zhaolb
  • 浏览: 27960 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
1.获取系统日期: select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual; 2.设置日期格式: alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss'; 3.获取系统时间戳: select systimestamp from dual; 4.sql语句的if语句: decode: 产品放在哪个仓库 select product_id,decode(warehouse_id,1,'Southlake', 2,'San Francisco', 3,'New Jersey', ...
//冒泡排序 public void bubbleSort(){     int out,in;     for(out=nElems-1;out>1;out--){         for(in=0;in<out;in++){             if(a[in]>a[in+1])                 swap(in,in+1);         }     } } //选择排序 public void selectSort(){ int out,in,min; for(out=0;out<nElems-1;out++){     min=out;   ...
﹤scriptlanguage=”javascript”﹥   /**  *删除左右两端的空格  */  String.prototype.trim=function(){          return this.replace(/(^\s*)|(\s*$)/g, '');   }     /**  *删除左边的空格  */  String.prototype.ltrim=function()   {     return this.replace(/(^s*)/g,'');   }   /**  *删除右边的空格  */  String.prototype. ...
Oracle数据库中的rollup配合group by命令使用,可以提供信息汇总功能(与"小计"相似) 示例如下: SQL> select job,deptno,sal from emp; JOB            DEPTNO   SAL ---------      ---------   --------- CLERK          20          800 SALESMAN   30          1600 SALESMAN   30          1250 MANAGER     20          ...
基于Struts+Spring+Hibernate的使用和部署 课题说明:   就现在WEB开发而言,J2EE企业级开发技术比较成熟,开发模式模式也比较繁多,较流行开发模式MVC更是普遍,而基于MVC模式开发的框架也是种类繁多,现在使用最多的可能就是SSH ...
Global site tag (gtag.js) - Google Analytics