/
@param int $y 年份 $m 月份
@return array(本月开始时间,本月结束时间)
/
function mFristAndLast($y="",$m=""){
if($y=="") $y=date("Y");
if($m=="") $m=date("m");
$m=sprintf("%02d",intval($m));
$y=str_pad(intval($y),4,"0",STR_PAD_RIGHT);
$m>12||$m<1$m=1:$m=$m;
$firstday=strtotime($y$m"01000000");
$firstdaystr=date("Y-m-01",$firstday);
$lastday = strtotime(date('Y-m-d 23:59:59', strtotime("$firstdaystr +1 month -1 day")));
return array("firstday"=>$firstday,"lastday"=>$lastday);
}
在ORACLE中查询前100条记录的语句的书写方法是:proc sql outobs=100;select from table1;quit。
用SAS写SQL就应该用它里面自带的一些功能,可能会更简单。
查询一个表中所有字段都相同的记录: 比如现在有一人员表 (表名:peosons) 若想将姓名、编号、住址这三个字段完全相同的记录查询出来:
select p1 from persons p1,persons p2 where p1name=p2name and p1id = p2id and p1address=p2address group by p1name,p1id,p1address having count() >1;
这个就可以查出你web_date中指定某年某月第一天、最后一天的数据了:
但如果你的字段year_month是date类型的,就这样写:
select from web_date a where ayear_month in
(select to_date('201502'||'01','yyyymmdd') from dual
union all(select to_date(to_char(last_day(to_date('201502', 'yyyymm')),'yyyymmdd'),'yyyymmdd')from dual));
但如果你的字段year_month是char类型的,就这样写:
select from web_date a where ayear_month in
( select '201502'||'01' from dual
union all( select to_char(last_day(to_date('201502', 'yyyymm')),'yyyymmdd')from dual));
'201502'这个是变量,你可以任意更改。
var day = new Date(2010,5,1);
这句话,你要知道第二个参数的范围是0-11,不是1-12,所以你写的这个时间实际上是2010年6月1日,就如你所见到的结果
以上就是关于php获取当年的每个月的第一天和最后一天时间戳的函数全部的内容,包括:php获取当年的每个月的第一天和最后一天时间戳的函数、一个在ORACLE中查询前100条记录的语句怎么写、Oracle如何获取一个年月的第一天和最后一天等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)