08 2017 档案
摘要:@Test public void testMap2List() throws Exception{ Map<String, String> map = new HashMap<String, String>(); map.put("1", "AA"); map.put("2", "BB"); ma
阅读全文
摘要:在ibatis的sql语句xml配置文件中,写sql语句会经常用到大于等于小于等于等等符号。网上搜罗了一些写法,大致有3种: 其实就是xml特殊符号,转义的方式。 < < > > <> <> & & ' ’ " ” 比如: select (case
阅读全文
摘要:CREATE TABLE t1(id varchar2(32) primary key,name VARCHAR2(32) ,age VARCHAR2(32) ) 添加表注释:COMMENT ON table t1 IS '个人信息'; 添加字段注释: comment on column t1.id
阅读全文