原字段类型为varchar2,实际上均为数字,想将字段类型改为number,报错ORA-01439: column to be modified must be empty to change datatype解决方法:tablename为表名称,colname为要修改的字段名alter table...
分类:
数据库 时间:
2015-04-23 19:15:55
阅读次数:
176
转自CSDN:http://blog.csdn.net/htl258/article/details/4006717SQL server 2005新增的几个函数,分别是row_number()、rank( )、,DENSE_RANK( )、ntile( )下面以实例分别简单讲解。1.row_numb...
分类:
数据库 时间:
2015-04-23 19:15:31
阅读次数:
295
B-number
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2988 Accepted Submission(s): 1656
Problem Description
A wqb-number, or ...
分类:
其他好文 时间:
2015-04-23 17:38:18
阅读次数:
197
说实话,如果不看别人的解答的话,这道题我也是没有思路,不知道该循环几次,也不知道循环的终止条件,后来才知道,【2-6】这个范围内的数字都不是happy number
所以就有了终止条件,n>6就是终止条件,当n跳进这个范围内的时候就终止循环,最后就能判断是否是happy number了#include
#include
bool isHappy(int n)
{
while(n>6)...
分类:
移动开发 时间:
2015-04-23 17:37:36
阅读次数:
136
Reverse Nodes in k-Group
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in ...
分类:
其他好文 时间:
2015-04-23 17:25:47
阅读次数:
124
java.lang.UnsupportedClassVersionError: Bad version number in .class file 造成这种过错是ni的支撑Tomcat运行的JDK版本与支撑application运行的JDK版本不一致导致的. 把它们的JDK版本改成一致步骤如下: 1.Win...
分类:
编程语言 时间:
2015-04-23 15:59:59
阅读次数:
110
202 Happy numberQuestionWrite an algorithm to determine if a number is “happy”.A happy number is a number defined by the following process: Starting w...
分类:
移动开发 时间:
2015-04-23 14:58:47
阅读次数:
125
Problem Description
The counter-terrorists found a time bomb in the dust. But this time the terrorists improve on the time bomb. The number sequence of the time bomb counts from 1 to N. If the curren...
分类:
其他好文 时间:
2015-04-23 13:22:02
阅读次数:
167
leetcode上的一道题目,虽然不难,但是考察了数据结构中很多的知识Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum ...
分类:
编程语言 时间:
2015-04-23 12:52:25
阅读次数:
175
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array[?2,1,?3,4,?1,2,1,...
分类:
其他好文 时间:
2015-04-23 12:51:25
阅读次数:
102