select getdate()
union all
select dateadd(day,1,getdate())
union all
select dateadd(day,2,getdate())
union all
select dateadd(day,3,getdate())
union all
select dateadd(day,4,getdate())
union all
select dateadd(day,5,getdate())
union all
select dateadd(day,6,getdate())
mysql怎么得到时间段每一天,不用表,就是得到一个时间段的每一天的日期因为时间是动态的,得到系统时间的每天 是 连续 叠加(多个)? 还只是得到每天的时间即可(一个),如:‘2014-11-11’,’2014-11-12’,‘2014-11-13’... ... 还是只要根据系统当前时间得到昨天的'2014-11-17',而到了今天的''2014-11-18'把昨天的'2014-11-17'替换掉,只保留一个日期时间
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)