NULL表示unknown,不确定值,所以任何值(包括null值)和NULL值比较都是不可知的,在on子句,where子句,Merge或case的when子句中,任何值和null比较的结果都是false,这就是NULL设下的陷阱,我被坑过。有一次,我使用Merge同步数据,由于target表中存在null值,虽然在source表..
分类:
其他好文 时间:
2017-04-25 14:55:13
阅读次数:
221
最近在自己的arclinux上安装postgreSQL的时候出现错误如下: error: postgresql-libs: signature from "Levente Polyak (anthraxx) <levente@leventepolyak.net>" is unknown trust ...
分类:
系统相关 时间:
2017-04-25 14:50:56
阅读次数:
620
DescriptionSuppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).Find the minimum ...
分类:
其他好文 时间:
2017-04-25 11:38:34
阅读次数:
236
descripte problem: there is an array,at the first it is sorted,but for som reason, it was rotated at some pivot unknown to you beforehand.then you sho ...
分类:
其他好文 时间:
2017-04-24 12:03:31
阅读次数:
157
Java 核心技术 l 字符串是用标准的Unicode 格式存储的 l main 方法必须声明为public,且必须是静态的 l 用花括号划分程序的各个部分称为块 l Byte 范围是-128到127 (包括0 一共256) l 0x 16进制的前缀;0 是8进制的前缀;0b 是二进制的前缀 l d ...
分类:
其他好文 时间:
2017-04-24 10:06:56
阅读次数:
123
字典是列表中常用的方法,我们经常处理字典,字典嵌套,很多复杂的操作都来自于基础,只是改变了样式而已,本质是不变的。下面来看看字典中常用的功能都有那些: 1.clear(self) def clear(self): # real signature unknown; restored from __d ...
分类:
其他好文 时间:
2017-04-23 15:06:21
阅读次数:
232
元组tuple的功能类似与列表,元组有的功能,列表都有,列表有的,元组不一定有,下面来看看元组具有的功能: 1.count(self,value) def count(self, value): # real signature unknown; restored from __doc__ """ ...
分类:
其他好文 时间:
2017-04-23 14:23:00
阅读次数:
266
列表是Python中常用的功能,我们知道,列表可以用来存储很多信息,掌握列表的功能有助于我们处理更多的问题,下面来看看列表都具有那些属性: 1.append(self,p_object) def append(self, p_object): # real signature unknown; re ...
分类:
其他好文 时间:
2017-04-23 13:48:47
阅读次数:
332
resin启动时报以下错误: [13:32:10.120] {main} WEB-INF/web.xml:42: 'listener-class' is an unknown property of 'com.caucho.config.types.InterfaceConfig'.[13:32:1 ...
分类:
其他好文 时间:
2017-04-18 13:56:28
阅读次数:
825
异常仅仅能抛一个,捕捉到再抛一个,也仅仅是一个异常 看以下的代码,假设你觉得运行不到(假设 if 条件满足)运行不到第2个 throwException 就错了 (Jeallybean code) libcore/luni/src/main/native/libcore_io_Posix.cpp#t ...
分类:
其他好文 时间:
2017-04-18 12:51:29
阅读次数:
195