摘要:
用Set.contains()再优化 阅读全文
摘要:
1,并集 list1.addAll(list2); 2,无重复并集 list2.removeAll(list1);list1.addAll(list2); 3,交集 list1.retainAll(list2); 4,差集 list1.removeAll(list2); 阅读全文
摘要:
to_date():将数据转为Date类型;to_char():将数据转为String类型 阅读全文
摘要:
instr():判断字符串是否包含某指定字符;substr():截取字符串 阅读全文