Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:
其他好文 时间:
2014-07-16 21:00:49
阅读次数:
208
switch的特点:只接受byte,shotr,int,char 语句的定义顺序可以随意的,但执行顺序还是从第一个case开始public class SwitchDemo { public static void main(String[] args) { int x = 4;...
分类:
其他好文 时间:
2014-07-16 20:56:08
阅读次数:
160
SQLServer 2005 SELECT d.name N'TableName', d.xtype N'TableType', a.colorder N'ColumnIndex', a.name N'ColumnName', (case when COLUMNPROPERTY( a.id,a.na...
分类:
数据库 时间:
2014-07-13 08:58:15
阅读次数:
197
Django’s optional GIS (Geographic Information Systems) support requires Python 2.5 to 2.7.这里提到了django的GIS,貌似是个挺有意思的东西,以后要研究一下。In case you’re curious: ...
分类:
其他好文 时间:
2014-07-13 08:45:43
阅读次数:
212
select a.TABLE_NAME as "TableName", case when (select count(*) from user_views v where v.VIEW_NAME =a.TABLE_NAME )>0 then 'V' else 'U'end as "TableTyp...
分类:
数据库 时间:
2014-07-13 00:44:11
阅读次数:
308
一天查看数据库长会话,发现1个sql跑得很慢,1个多小时不出结果,花了点时间把它给优化了。
优化前:
SELECT 20131023,
"A2"."ORG_ID",
COUNT(DISTINCT NLSSORT(CASE "A2"."RES_TYPE"
WHEN 'DP' THEN
...
分类:
其他好文 时间:
2014-07-12 23:48:46
阅读次数:
217
$links = array();
//获取系统菜单,所有权限都默认进行了验证
$links['case-edit']=menu_get_item('node/'.$row->nid.'/edit');
//自定义链接地址
$links['custom_url']=array(
'title' => t('custom_url'),
...
分类:
其他好文 时间:
2014-07-12 21:02:44
阅读次数:
236
在不使用par file的情况下,export or import 含有大小写表名的表...
分类:
其他好文 时间:
2014-07-12 20:00:14
阅读次数:
197
在C++中,传统的业务分发,总要写一大串的switch-case,而且每次增加新业务时,都要在原有的switch-case里加一个分支,这就违反了设计模式中的开放封闭原则,
以下这种方案,就完全去除了switch-case,每当要添加业务模块时,只要写一个TEST_MODULE(index, name)就可以了。
思路很简单,直接上代码:#include
#include
#inclu...
分类:
编程语言 时间:
2014-07-12 17:01:38
阅读次数:
179
Case-insensitive matching:https://blogs.oracle.com/xuemingshen/entry/case_insensitive_matching_in_java(?i) means: for ASCII case-insensitive matching:...
分类:
编程语言 时间:
2014-07-12 15:11:09
阅读次数:
158