SELECT CASE 语句******selectid,'sexNo'=casewhen sex='先生' then 2when sex='女士' then 3else 1 end,age FROM [ comsiterefer]
分类:
其他好文 时间:
2014-08-20 19:16:42
阅读次数:
177
UVA 282 - Rename
题目链接
题意:给定一些文件名,然后有利用通配符'*'去进行修改操作,输出每次修改操作会修改到的文件的替换
思路:先保存下文件名,然后每次改名去遍历找一遍看有多少个文件是符合这个格式的,如果符合就相应输出即可
注意这组数据
ab
abab
end
rename ab*ab asd*asd
end
代码:
#includ...
分类:
其他好文 时间:
2014-08-20 16:20:52
阅读次数:
251
http://localhost:8080/EChartDynamic/DEcharts_bar1?flag=teacher_sex&dataSource=UTADB http://localhost:8080/EChartDynamic/DEcharts_bar1?flag=title-...
分类:
其他好文 时间:
2014-08-20 15:58:12
阅读次数:
216
1.查看TCP连接状态netstat -nat |awk ‘{print $6}’|sort|uniq -c|sort -rnnetstat -n | awk ‘/^tcp/ {++S[$NF]};END {for(a in S) print a, S[a]}’netstat -n | awk ‘/...
分类:
系统相关 时间:
2014-08-20 15:42:22
阅读次数:
335
1、存储过程创建格式: create [or replace] procedure procedure_name(参数) as/is 声明部分 begin 执行部分 [exception 异常处理部分] end; 注:(1).中括号为可选部分,即在一个存储过程中可以有也...
分类:
数据库 时间:
2014-08-20 14:02:33
阅读次数:
309
incomplete final line found by...The message indicates that the last line of the file doesn't end with an End Of Line (EOL) character (linefeed (\n) o...
分类:
其他好文 时间:
2014-08-20 13:51:52
阅读次数:
164
在终端下输大量的命令,有些快捷键还是挺有帮助的。跳跃跳到最后 ctrl + e (end)跳到最前 ctrl + a (abcde....)向后跳一个单词 alt + 右方向键向前跳一个单词 alt + 左方向键删除删除当前到最后中的字符 ctrl + k删除当前到最前中的字符 ctrl + u删除...
分类:
其他好文 时间:
2014-08-20 12:05:42
阅读次数:
241
a simple music player: Golang for the back-end, html5 and jQuery for the front-end...
分类:
Web程序 时间:
2014-08-20 10:31:26
阅读次数:
224
资料1
-- Created on 2014/8/20
declare
-- Local variables here
i integer;
begin
i := 12;
-- Test statements here
DBMS_OUTPUT.put_line(i);
end;
资料2
declare
cursor s is
...
分类:
数据库 时间:
2014-08-20 09:20:36
阅读次数:
228
lua中的小技巧,即基础lua语言本身的特种,进行一个些简化的操作
一 巧用or
x = x or v
等价于:
if not x then
x = v
end
如果x为nil或false,就给他赋值为
二 三元运算符实现
a and b or c
类似C语言:
a ? b : c
and 的运算由优先级高于or...
分类:
其他好文 时间:
2014-08-20 01:25:15
阅读次数:
169