隐藏
柏港为您找到相关结果约23
正在查找Oracle类别下的相关技术资讯信息
Oracle函数,按分隔符截取字符串

今天因工作需要,写了一个小函数,按分隔符截取字符串的,分享出来,希望有需要的朋友能用到。功能实例: substrbysep('aaa,bb,ccccc,ddd,vvv',',',3)返回结果 'ccccc'.函数:create or replace function substrbysep(sourceString varchar2, …

亲测配置ORACLE 11g绿色版客户端连接oracle服务

本方法是通过使用ORACLE官方提供的精简版客户端,即绿色免安装的客户端。Windows32位oracle11g免安装客户端下载地址:http://download.csdn.net/detail/yangwg1984/7077951Instantclient的版本很多:主要是Basic和Basic Lite。 Basic版本包括了所有的支持运行OCI、OCCI、…

oracle保存小数点前为"0"的问题

问题1:Oracle对于小于1的小数,小数点前面的0是不显示的。可以通过select to_char('0.66556','0000.9999') from dual 这样输出的小数是保留小数前面的0的问题2:对于小数以后为0的,oracle不显示select to_char('0.1', '9999990.00000') from dual 这样得到数值是保留5…

ORACLE日期时间函数大全

ORACLE日期时间函数大全 TO_DATE格式(以时间:2007-11-02 13:45:25为例) Year: yy two digits 两位年 显示值:07 yyy three digits 三位年 显示值:007 yyyy four digits 四位年 显…

oracle SELECT INTO 和 INSERT INTO SELECT 两种表复制语句详解

我们经常会遇到需要表复制的情况,如将一个table1的数据的部分字段复制到table2中,或者将整个table1复制到table2中,这时候我们就要使用SELECTINTO 和 INSERT INTO SELECT 表复制语句了。1.INSERT INTOSELECT语句语句形式为:Insert intoTable2(field1,field2,...) se…

oracle 实现按天,周,月,季度,年查询统计数据

//按天统计 select count(dataid) as 每天操作数量, sum() from where group by trunc(createtime, 'DD')) //按自然周统计 select to_char(date,'iw'),sum() from where group by to_char(date,'iw') //按自然月统计 select to_char(date,'mm'),sum() …

oracle分组查询(某年12月的数据和每年每月的数据)

//查询某年1-12月的数据select to_char(createdate,'yyyy-mm') 月份,count(*) 数量 from cms_news where ispub='1' and createdate between to_date('2014-01','yyyy-mm') and to_date('2014-12','yyyy-mm') group by to_char(createdate,'yyyy-mm') order by to_char(cr…

如何用Oracle查询多个时间段的数据,如取出(2013-1-1到2013-4-1)和(2014-1-1到2014-4-1)的数据

(to_char(时间,'yyyy-mm-dd hh24:mi:ss') >='2013-01-01 00:00:00' and to_char(时间,'yyyy-mm-dd hh24:mi:ss')<='2013-04-01 23:59:59') or(to_char(时间,'yyyy-mm-dd hh24:mi:ss') >='2014-01-01 00:00:00' and to_char(时间,'yyyy-mm-dd hh24:mi:ss')<='2…

Oracle表时间区间查找

if (!string.IsNullOrEmpty(model.FROMTIME) && !string.IsNullOrEmpty(model.TOTIME)) { strWhere = strWhere + string.Format(" and FinishTime between to_date('{0}','yyyy-mm-dd hh24:mi:ss') and to_date('{1}','yyyy-m…

oracle中查询某段日期内的某个时间段的语句

了解to_date ,to_char, trunc,group by 等相关知识 查询表aaa中bbb在2011-8-22 至2011-8-25中 每天10:00到11:00 内的数据 以及数目select bbb ,count(bbb) from (select * from aaa where rec_date between trunc(to_date('2011-8-22 09:00:00','yyyy-mm-ddhh24:mi:ss…