码迷,mamicode.com
首页 >  
搜索关键字:number    ( 26994个结果
as3 Point
首先我们看看Point类的属性:x:Number——该点的水平坐标y:Number——该点的垂直坐标length:Number——从(0,0)到此点的线段长度(只读属性)从length属性我们可以看到,实际上一个Point类的实例是一个以(0,0)为始点,以(x,y)为终点的矢量,因此,我们可以应用...
分类:其他好文   时间:2014-09-30 17:18:49    阅读次数:236
Oracle判断值为非数字
select * from product_info t where t.contract_detailid is not null and length(translate(t.contract_detailid,'-.0123456789'||t.contract_detailid,'-.0123456789'))...
分类:数据库   时间:2014-09-30 15:56:49    阅读次数:210
ORA-31693 ORA-01555错误
oracle10g用数据泵导出数据提示,提示错误如下:ORA-31693:Tabledataobject"SMARTGPS2006"."MCC_ASYN_POS":"MCC_ASYN_POS201409"failedtoload/unloadandisbeingskippedduetoerror:ORA-29913:errorinexecutingODCIEXTTABLEPOPULATEcalloutORA-01555:snapshottooold:rollbacksegm..
分类:其他好文   时间:2014-09-30 14:01:10    阅读次数:202
HDU-4407-Sum(容斥原理)
Problem Description XXX is puzzled with the question below:  1, 2, 3, ..., n (1 Operation 1: among the x-th number to the y-th number (inclusive), get the sum of the numbers which are co-prim...
分类:其他好文   时间:2014-09-30 02:54:32    阅读次数:302
Single Number
题目描述:Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime compl...
分类:其他好文   时间:2014-09-30 00:53:01    阅读次数:216
Two Sum
题目描述:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the t...
分类:其他好文   时间:2014-09-30 00:24:31    阅读次数:208
分析函数在数据分析中的应用
我们来看看下面的几个典型例子: ①查找上一年度各个销售区域排名前10的员工 ②按区域查找上一年度订单总额占区域订单总额20%以上的客户 ③查找上一年度销售最差的部门所在的区域 ④查找上一年度销售最好和最差的产品   我们看看上面的几个例子就可以感觉到这几个查询和我们日常遇到的查询有些不同,具体有:   ①需要对同样的数据进行不同级别的聚合操作 ...
分类:其他好文   时间:2014-09-29 19:38:12    阅读次数:275
Oracle查询时15分钟划分
select to_date(to_char(sysdate, 'yyyy-MM-dd hh24') || ':' || floor(to_number(to_char(sysdate, 'mi')) / 15) * 15, 'yyyy-MM-dd hh24:mi') TTIME from dual
分类:数据库   时间:2014-09-29 19:08:01    阅读次数:205
POJ 3589 Number-guessing Game(简单题)
【题目简述】:两个四位数,如果后一个数中的某个数与前一个对应的数的位置和值都相等,则统计数目由几个这样的数,记为count1吧。如果后一个数中的某个数与前一个数的数值相等,但位置不同。此时这样的数的个数记为count2。 写成*A*B,即count1 A count2 B。 【分析】:题目的简述即分析。 //740K 0Ms #include #include using namespace...
分类:其他好文   时间:2014-09-29 15:26:31    阅读次数:279
[转]Oracle版本号解释
注意: 在oracle 9.2 版本之后, oracle 的maintenance release number 是在第二数字位更改。 而在之前,是在第三个数字位。1. Major Database Release Number 第一个数字位,它代表的是一个新版本软件,也标志着一些新的功能。如11....
分类:数据库   时间:2014-09-29 14:21:01    阅读次数:330
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!