
Oracle
iteye_1571
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mybatis批量插入数据到oracle
<insert id="batchInsertB2B" parameterType="ArrayList"> insert into xxxxtable(hkgs,hkgsjsda,office,asdf,ddd,ffff,supfullName,classtype,agent_type,remark) <foreach collection="list" item="...原创 2013-07-11 10:15:15 · 96 阅读 · 0 评论 -
Oracle 查询今日、昨日、本周、本月和本季度的所有记录
字段类型为date 今日 select * from 表名 where to_char(字段名,'dd')=to_char(sysdate,'dd') 昨日 select * from 表名 where to_char(字段名,'dd')= to_char(sysdate-1,'dd')本周 select * from 表名 where to_char(字段名,'iw')=to_c...原创 2013-07-11 11:11:44 · 127 阅读 · 0 评论