摘要:
1、首先创建一张表 该表用来执行插入数据。 create table getSysDate(test date); 2、创建存储过程以插入数据。 create or replace procedure insertSysDate as begin insert into getSysDate val 阅读全文
摘要:
public class Global { public static final String YES = "1"; private static final String NO="0"; public static Object getConst(String field){ try { ret 阅读全文
摘要:
如图,我想是实现按取每一种币别的最新的那条汇率; 先按币别分组 筛选出你小于指定日期的最大时间和币别集合 select cur_Id,max(pre_time)as preTime from fc_excrate_adjust fe where fe.pre_time<=to_date('2020- 阅读全文