摘要:
今天在工作的时候发现自己update 一个表的某个字段超时,想了好久,首先想到的办法是,延长操作时间:mysql> set innodb_lock_wait_timeout=100mysql> show variables like 'innodb_lock_wait_timeout'; 但是时间... 阅读全文
摘要:
在DB2中的Date 一共识别三种格式,最常见的是这样'2013-12-12' 对,你没看错,DB2认为这样的字符串就是Date数据然后我们可以利用函数这样寻找日期区间select * from users where g_time between '2003-05-04 ' and '2003-... 阅读全文
摘要:
(define (sum a b) (+ a b))(define (sum-two a b c) ( cond ((and (> (sum a b) (sum a c)) (> (sum a b) (sum b c))) (sum a b)) ((and (> (sum a c) (sum a b)) (> (sum a c) (sum b c))) (sum a c)) (else (sum b c)) ))(sum-two 1 2 3) 阅读全文
摘要:
google搜索引擎打不开时的解决办法,谷歌(google)的IP是多少? google IP镜像。这里搜集了几个经过测试可用的IP,用来在不能域名访问google的时候进行访问,实时更新!前面几个IP的访问速度比较快。74.125.31.106173.194.45.20173.194.45.19173.194.45.18173.194.45.17173.194.45.1674.125.128.16074.125.235.9774.125.71.10472.14.203.14774.125.71.104203.208.37.99203.208.46.178203.208.37.99203.20 阅读全文