摘要:
left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录 inner join(等值连接) 只返回两个表中联结字段相等的行 举例如下: -------------------------------------------- 表A记录如下: aID ... 阅读全文
摘要:
Date、String、Calendar类型之间的转化 1.Calendar 转化 String //获取当前时间的具体情况,如年,月,日,week,date,分,秒等 Calendar calendat = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"... 阅读全文
摘要:
阅读全文
摘要:
即 设置 阅读全文
摘要:
后台Java解析数据 阅读全文
摘要:
List ll = new ArrayList(); ll.add(new BigDecimal(1)); ll.add(new BigDecimal(4.99)); ll.add(new BigDecimal(5)); System.out.println("最大值: " + Collections.max(ll)); ... 阅读全文
摘要:
函数语法: group_concat( [DISTINCT] 要连接的字段 [Order BY 排序字段 ASC/DESC] [Separator '分隔符'] ) 下面举例说明: select * from goods; +------+------+ | id| price| +------+------+ |1 | 10| |1 | 20| |1 | 20| |2 |... 阅读全文
摘要:
$('#textboxid').textbox().next('span').find('input').focus(); $('#id').textbox('textbox').focus(); 阅读全文
摘要:
$("select option:selected").next(); //select 当前当前选中的最后一个 option对象 var aucNum=$("#secOrderNum option:selected").text(); var aucNumLast=$("#secOrderNum option:last-child").text(); //select... 阅读全文
摘要:
easyui datagrid reload方法 阅读全文