ALTER FUNCTION [dbo].[fu_GetCaption](@Stage nvarchar(50),@T_stage_weeks int,@S_stage_months int,@RowNum int --第几行)RETURNS nvarchar(260)ASBEGINDeclare ...
分类:
其他好文 时间:
2015-06-25 17:00:48
阅读次数:
184
April 26, 2015Spent over a few months to go over 30 questions about algorithm starting from January 13, 2013. 网站很好, 看看, 有些帮助.Some of questions are my ...
分类:
其他好文 时间:
2015-06-18 09:32:50
阅读次数:
106
Parole board to recommend Oscar Pistorius be released in August 假释委员会将建议奥斯卡·皮斯托瑞斯在8月份被释放By Don Melvin, CNNUpdated 1611 GMT (2311 HKT) June 8, 2015(CNN...
分类:
其他好文 时间:
2015-06-09 06:04:37
阅读次数:
187
-- 找出在(任何年份)2月受聘的所有员工
select * from emp where to_number(to_char(hiredate, 'mm'))= 2;
-- 对每个员工,显示其加入公司的天数
select ename, round(sysdate - hiredate) Days from emp;
-- 显示姓名中任意位置包含“A”的所有员工姓名
select * from emp where upper(ename) like '%A%';
-- 以年月日方式显示所有员工的服务年...
分类:
数据库 时间:
2015-06-04 01:04:31
阅读次数:
207
常用日期型函数1.Sysdate 当前日期和时间SQL> Select sysdate from dual;2.Last_day 本月最后一天SQL> Select last_day(sysdate) from dual;3.Add_months(d,n) 当前日期d后推n个月用于从一个日期值增加或...
分类:
数据库 时间:
2015-06-03 09:36:04
阅读次数:
132
Hi ,Hope all is well. Summer is right around the corner, and the Khan Academy team is excited to spend the next few months growing our library of cont...
分类:
其他好文 时间:
2015-05-26 12:20:50
阅读次数:
142
1.无效的月份,一个可能是字符集的问题,alter session set nls_language=americanalter session set nls_language='SIMPLIFIED CHINESE' 还有一种就是某张表对应的字段格式不正确Select Sum((Months_B...
分类:
数据库 时间:
2015-05-14 16:17:41
阅读次数:
186
1.类型 Perl只有三种类型,标准变量,数组和散列(哈希),分别用三种符号进行表示,即$,@,%。#!/usr/bin/perl$name = "xuzhang";print "$name\n"; #xuzhang@months = ('xuzhang','mating','mao');%per....
分类:
编程语言 时间:
2015-05-13 00:35:01
阅读次数:
266
加法 select sysdate,add_months(sysdate,12) from dual; --加1年 select sysdate,add_months(sysdate,1) from dual; --加1月 select sysdate,to_char(sysdate+7,'y...
分类:
数据库 时间:
2015-05-11 12:16:03
阅读次数:
144
Problem Description
After months of hard working, Iserlohn finally wins awesome amount of scholarship. As a great zealot of sneakers, he decides to spend all his money on them in a sneaker store.There...
分类:
其他好文 时间:
2015-05-10 17:25:25
阅读次数:
116