上一页 1 ··· 8 9 10 11 12 13 14 15 下一页
摘要: 1. 查找前几名--25、查询各科成绩前三名的记录:(不考虑成绩并列情况) --不考虑重复SELECT courseid,score,row_number() OVER(PARTITION BY courseid ORDER BY score DESC) AS rn FROM tblScore--考... 阅读全文
posted @ 2015-01-18 20:44 江湖一笑 阅读(243) 评论(0) 推荐(0) 编辑
摘要: cursor :hand 是手型pointer 也是手型,这里推荐使用这种,因为这可以在多种浏览器下使用。crosshair 是十字型tex t是移动到文本上的那种效果wait 是等待的那种效果default 是默认效果help 是问号e-res... 阅读全文
posted @ 2015-01-18 17:51 江湖一笑 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 判断属性1. 判断复选框是否被选中$("input[type='checkbox']").prop("checked"); 阅读全文
posted @ 2015-01-18 16:29 江湖一笑 阅读(1508) 评论(0) 推荐(1) 编辑
摘要: 1. 按钮颜色动画、透明设置 $("#RegisterBtn").hover(function () { $(this).stop().animate({ opacity: '0.6' }, 600); $(this).css("... 阅读全文
posted @ 2015-01-17 18:11 江湖一笑 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1 7 8 9 10 11 序号12 员工号13 员工姓名14 15 ${s.index + 1}16 ${emp.empNo }17 ${emp.ename }18 19 20 21 ${i }22 23 24 25 26 2... 阅读全文
posted @ 2015-01-17 16:31 江湖一笑 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1. 输出结果为:168888public static void main(String[] args) { System.out.println(8+8+"88"+8+8);}解释: 1.从左往右看,前边两个8都为 int 类型,8+8=16; 2."88"为 String 类型... 阅读全文
posted @ 2015-01-15 14:16 江湖一笑 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1.查询语句 主要由 select 关键字完成2.DML语句(数据操作语言) 主要由 insert、update、delete 三个关键字完成 主要操作 表 3.DDL语句(数据定义语言) 主要由 creat、alter、drop、truncate 四个关键字完成 操作数据库对象的语句 ... 阅读全文
posted @ 2015-01-14 20:37 江湖一笑 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序 1 public static void main(String[] args) { 2 int[] nums = {1,2,88,7,1,20,30,18,92}; 3 int temp = 0; 4 int N = nums.length... 阅读全文
posted @ 2015-01-13 20:50 江湖一笑 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 建表 1 CREATE TABLE RacingResults 2 ( 3 track_id CHAR(2) NOT NULL, --赛道名称 4 race_date DATE NOT NULL, ... 阅读全文
posted @ 2015-01-13 18:10 江湖一笑 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 利用选择排序将下列数组升序排列 38,17,16,16,7,31,39,32,2,11 1 int[] ar = new int[]{38,17,16,16,7,31,39,32,2,11}; 2 for(int i=0 ;i ar[j]){ 7 min = j; 8 } 9... 阅读全文
posted @ 2015-01-13 17:52 江湖一笑 阅读(173) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页