当前位置: 首页 >
2008年9月4日发布的所有文章
-
mysql 日期函数
#title: 常用的日期推算处理 #auther: 小强(占卜师) #date: 2007–12–25 #取得当前日期 set @dt=CURDATE(); select @dt; #当前日期这个月的第一天 select concat(left(@dt,8),‘1‘); #当前日期这个月的最后一天 select date_sub(concat(left(date_add(@dt,INTERVAL 1 MONTH),8),‘01 ...
-
mysql 统计一周数据
select * from $table where time > ( select date_sub(curdate(),interval 1 week) ) and time
]]>