摘要: 语法及其应用: 查询部门创建时间最早的三条记录 select * from ( select * from dept t order by t.cdate ) where rowmun=2 and r1; 统计平均奖金大于2000 的各个职位的最高工资 select job,max(comm) from emp1 e group by e.job having avg(... 阅读全文
posted @ 2017-12-27 15:25 酷酷的飞 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 常用快捷键 格式化 ctrl+shift+f 导入包 ctrl+shift+o 注释 ctrl+/,ctrl+shift+/,ctrl+shift+\ 代码上下移动 选中代码alt+上/下箭头 查看源码 选中类名(F3或者Ctrl+鼠标点击) 自动生成构造方法 a:无参构造方法 // alt+shift+s +c b:带参构造方法 ... 阅读全文
posted @ 2017-12-27 14:53 酷酷的飞 阅读(239) 评论(0) 推荐(0) 编辑
摘要: UEP中添加新的表格标签:function initCustomToolBar(){ var strHtml=" 进货合计(元): " +"税额合计(元): " +"价税合计(元): "; ajaxgridlist.addCustomToolBarByHtml(strHtml,"right"); } 阅读全文
posted @ 2017-12-27 11:43 酷酷的飞 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 例子:https://www.w3cschool.cn/regexp/x9hf1pq9.html 阅读全文
posted @ 2017-12-27 10:08 酷酷的飞 阅读(87) 评论(0) 推荐(0) 编辑