1.查询时间字段问题:
用sql语句查询的时候,需要将字符串转换,to_timestamp或者to_date
where insert_time>to_timestamp('2013-08-01 00:00:00','yyyy-mm-dd hh24:mi:ss')
2.树操作(select…start with…connect by…prior)
http://www.cnblogs.com/linjiqin/archive/2013/06/24/3152674.html
connect by prior m.parent=m.id; 是查询所有的父节点
connect by m.parent=prior m.id; 是查询所有的子节点
level,connect_by_root,connect_by_isleaf,sys_connect_by_path,lpad(' ',(level-1)*2,' ')补空格
3.in()中的对象不能超过1000个,超过了就只能自己拆分
where a in(...) or a in(...)
原文链接:https://www.f2er.com/oracle/212853.html