上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页
摘要: 一、子查询入门:1、单值子查询: 单值子查询的唯一限制:子查询的返回值必须只有一行记录,而且只能有一列(又被称为标量子查询)。 可以使用在select语句的列表、表达式中,以及where语句中等。 例1:select 1 as f1,2,(select min(fyearpublished) from t_book),(select max(fyearpublished) from t_book) as f4 from dual;2、列值子查询: 列值子查询可返回一个多行多列的结果集(又称为表子查询)。 可以使用在select语句的from子句中、insert语句、连接、in子句等。 例1:s 阅读全文
posted @ 2014-03-28 15:10 ejllen 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 实体和对象 阅读全文
posted @ 2014-03-26 13:57 ejllen 阅读(617) 评论(0) 推荐(0) 编辑
摘要: eclipse F3可以查询某个方法的具体定义 阅读全文
posted @ 2014-03-26 11:26 ejllen 阅读(259) 评论(0) 推荐(0) 编辑
摘要: SQL UNION 操作符UNION 操作符用于合并两个或多个 SELECT 语句的结果集。请注意,UNION 内部的 SELECT 语句必须拥有相同数量的列。列也必须拥有相似的数据类型。同时,每条 SELECT 语句中的列的顺序必须相同。SQL UNION 语法SELECT column_name(s) FROM table_name1UNIONSELECT column_name(s) FROM table_name2注释:默认地,UNION 操作符选取不同的值。如果允许重复的值,请使用 UNION ALL。SQL UNION ALL 语法SELECT column_name(s) FRO 阅读全文
posted @ 2014-03-25 12:00 ejllen 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 法一:jquery 循环获取选中checkBox框的值 function checkeds() { $("input:checkbox").each(function(index) { alert($("#checkid_"+index).val());//"#checkid_"+index checkbox的id }); } 法二:jquery 循环获取选中checkBox框的值 function checkeds(){ //$('input:checkbox[name="multiple"]:check 阅读全文
posted @ 2014-03-25 11:12 ejllen 阅读(1498) 评论(0) 推荐(0) 编辑
摘要: 在我们的实例中的所有 jQuery 函数位于一个 document ready 函数中:$(document).ready(function(){--- jQuery functions go here ----});这是指文档在完全加载(就绪)之后运行 jQuery 代码。 阅读全文
posted @ 2014-03-25 10:37 ejllen 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 是指在 HTML 页面中插入一段 JavaScript 阅读全文
posted @ 2014-03-25 10:20 ejllen 阅读(387) 评论(0) 推荐(0) 编辑
摘要: jquery ui 提供了强大的dialog功能,基本能满足开发的功能。先上一个简单的例子:【代码】 This is the default dialog which is useful for displaying information.The dialog window can be moved, resized and closed with the 'x' icon.具体用法还是简单的,总结如下: 一、需要加载的js和css请记住顺序,加载错的会导致意想不到的结果。(1)jquery.js(2)jquery.ui.core.js(3)需要的效果:jquery.ui.x 阅读全文
posted @ 2014-03-25 10:14 ejllen 阅读(1204) 评论(0) 推荐(1) 编辑
摘要: util包就是用来放一些公用方法和数据结构的 阅读全文
posted @ 2014-03-25 09:47 ejllen 阅读(254) 评论(0) 推荐(0) 编辑
摘要: Java在java.math包中提供的API类BigDecimal,用来对超过16位有效位的数进行精确的运算。 阅读全文
posted @ 2014-03-24 19:53 ejllen 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页