摘要:
public static void main(String[] args) { Map map = new HashMap(); map.put("1", "value1"); map.put("2", "value2"); map.put("3", "value3"); ... 阅读全文
摘要:
select * from a where instr(a,b)>0;用于实现B字段是A字段中的某一部分的时候,要论顺序或者要相邻的字符。如果想要不论顺序或者不相邻的字符时,定义函数可以实现:select * from a where instr(a,b)>0;这个只能实现B字段是A字段中的某一部分... 阅读全文