摘要:
原符号 < <= > >= 替换符号 < <= > >= 例如:sql如下: select count(1) as total,'111' as key1 from userinfo where lrsj >= #{lrsjq} and lrsj < #{lrsjz} 阅读全文
摘要:
SimpleDateFormat sdfYMD = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.SECOND,0); // 阅读全文
摘要:
当在java开发中遇到了Column ‘AAA’ in where clause is ambiguous问题时, 你需要去看看:多表查询的时候不同的表是否出现了相同名称相同的列, 如果存在,你需要在条件中或者查询结果中指定表名, 比如:user表有name,post表有name,而你想查询name 阅读全文