上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: 转载自:https://www.cnblogs.com/iceword/archive/2011/02/15/1955337.html select * from A where id in(select id from B) 以上查询使用了in语句,in()只执行一次,它查出B表中的所有id字段并 阅读全文
posted @ 2018-01-15 17:11 未来的羁绊 阅读(215) 评论(0) 推荐(0)
摘要: 摘自:http://www.linuxidc.com/Linux/2015-04/116349.htm Oracle 中 rank() over, dense_rank(), row_number() 的区别 假设现在有一张学生表student,学生表中有姓名、分数、课程编号,现在我需要按照课程对学 阅读全文
posted @ 2018-01-15 16:53 未来的羁绊 阅读(3054) 评论(0) 推荐(1)
摘要: 以下 转载自:https://www.cnblogs.com/iliuyuet/p/4585666.html 语法:ROW_NUMBER() OVER(ORDER BY COLUMN) 简单的说row_number()从1开始,为每一条分组记录返回一个数字,这里的SELECT ACD_ID,ROW_ 阅读全文
posted @ 2018-01-15 16:32 未来的羁绊 阅读(252) 评论(0) 推荐(0)
摘要: // // //校验实体数据是否填写if(entity.validate()!="ok"){ return;} // // /** *在鼠标失去焦点候将填写的小写字母转换为大写字母 *///@Bind #pcode.onBlur!function(self, arg){ var str = view 阅读全文
posted @ 2018-01-07 22:30 未来的羁绊 阅读(1727) 评论(0) 推荐(0)
摘要: // @Bind #btnReset.onClick!function(self, arg) { var subNo = view.get("#dsQueryCriteria").getData("#.subNo"); var subName = view.get("#dsQueryCriteria 阅读全文
posted @ 2018-01-07 22:29 未来的羁绊 阅读(535) 评论(0) 推荐(0)
摘要: 1.dataset添加数据this.get("#dsProduct").getData().insert();或者this.get("#dsProduct").insert();this.get("#dsProduct.data").insert();推荐使用 “#dsProduct.data”表示 阅读全文
posted @ 2018-01-07 22:28 未来的羁绊 阅读(6056) 评论(0) 推荐(1)
摘要: /* */ 问题1[ ] Select t.* From v_T04_Product_m t where t.pcode = 'C02-422'; Select t.* From v_T04_Product_m t where t.pcode = 'TEST08'; pcode C02-422 pi 阅读全文
posted @ 2018-01-07 22:27 未来的羁绊 阅读(166) 评论(0) 推荐(0)
摘要: select to_char(to_date(sysdate,'yyyy-mm-dd'),'day') from dual; select to_date('2017-12-31','day') from dual; select sysdate,to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual; select sysdate,to_... 阅读全文
posted @ 2018-01-02 07:28 未来的羁绊 阅读(174) 评论(0) 推荐(0)
摘要: 1、在网络上发现matlab能画出一些很有意思的图形(立体爱心) 2、在网络上发现matlab能画出一些很有意思的图形(平面爱心) 3、绘制标准三维曲面图形。 阅读全文
posted @ 2017-12-31 13:55 未来的羁绊 阅读(414) 评论(0) 推荐(0)
摘要: create or replace procedure PROC_P_ABC is v_sumday number :=0; i number :=0; v_calendar_date number :=null; v_day number :=null; begin select to_date(TO_CHAR(SYSDATE,'RRRR'),'yyyy') - to_dat... 阅读全文
posted @ 2017-12-29 20:54 未来的羁绊 阅读(356) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页