概述
我追踪了许多此类链接Merging two Maps,但仍无法解决问题.
我有两个Maps List< Map< String,Object>> -此映射包含acc_num,parent_acc_num,crte_dt,rnwl_dt,用户ID等,其他映射包含acc_num和isActive(这是对第一个映射的改进).
我想创建/合并这两个映射,并创建包含acc_num,parent_acc_num,crte_dt,rnwl_dt,userid isActive详细信息的最终映射.
我怎样才能做到这一点 ?
以下是示例数据.唯一的问题都是Map列表,如何在另一个列表之间进行迭代?
{CRTE_DT=2017-06-22, USER_ID=ABC, ACC_NUM=9449, RNWL_DT=2017-06-22, PARENT_ACC_NO=9449}
{ACC_NUM=9449, IS_ACTIVE=false}
另一个查询:
如果以下工作可行,则可能无需进行计算
我有以下使用12c的Oracle查询,我需要一种方法来检查查询本身是否
>如果CreatedDate 30天> Sysdate然后显示具有true —>的列.径内
>如果CreatedDate 30天< Sysdate然后显示具有错误的列--->落后时期“select cust.acc_num, third.parent_acc_id, cust.crte_dt,cust.updated_dt ,cust.crte_user_id from CUST_ACCT cust, ThirdParty_third third ”
+ “where cust.updated_dt is null and cust.CRTE_DT < sysdate ”
+ “and cust.acc_num = third.third_code and is_actv = ? union ”
+ “select cust.acc_num, third.parent_acc_id, cust.crte_dt,cust.updated_dt, cust.crte_user_id from CUST_ACCT cust, ThirdParty_third third ”
+ “where ( cust.updated_dt is not null and cust.updated_dt < sysdate ) ”
+ “and cust.acc_num = third.third_code and is_actv = ? “;
最后
以上就是拼搏狗为你收集整理的java两个map合并_如何在Java中组合两个不同的Map?的全部内容,希望文章能够帮你解决java两个map合并_如何在Java中组合两个不同的Map?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复