摘要:
查询 昨天的记录:select * from [table_name] where [create_date]= sysdate-1--昨天上午10点的记录select * from [table_name] where [create_date]=trunc(sysdate-1) + 10/24-... 阅读全文
摘要:
instr 与 like 的用法有相似之处,用于模糊查询的时候 instr(string,'abc')>0相当于like '%abc%',instr(string,'abc')=1 相当于like ‘abc%’; instr(string,‘abc’) 相当于 not like ’%abc%‘。通常... 阅读全文
摘要:
No result defined for action.....and result input页面报错如此,jsp 如下: you can upload a file here java 如下:public class FirstAction extends ActionSuppor... 阅读全文
摘要:
报错 failed to lazily initialize a collection of role,按网上介绍的方法,在web.xml加上 org.springframework.orm.hibernate3.support.OpenSessionInViewFilter ,问题依然存在,于是加... 阅读全文