- 积分
- 255
- 在线时间
- 82 小时
- 主题
- 3
- 注册时间
- 2013-8-20
- 帖子
- 71
- 最后登录
- 2024-12-8
- 帖子
- 71
- 软币
- 999
- 在线时间
- 82 小时
- 注册时间
- 2013-8-20
|
--- select convert(datetime,(convert(char(7),dateadd(month,-1,getdate()),111)+'/1')) ; last month first day
---select dateadd(day,-1,convert(datetime,(convert(char(7),getdate(),111)+'/1'))) ; last month end day
---select convert(datetime,(convert(char(7),getdate(),111)+'/1')) ; this month first day
---select dateadd(day,-1,convert(datetime,(convert(char(7),dateadd(month,1,getdate()),111)+'/1'))) ; this month end day
---select convert(datetime,(convert(char(7),dateadd(month,1,getdate()),111)+'/1')) ; next month first day
ex: 2011/8/9
---SELECT CONVERT(VARCHAR(4),YEAR(GETDATE()))+'/'+CONVERT(VARCHAR(2),MONTH(GETDATE()))
+'/'+CONVERT(VARCHAR(2),DAY(GETDATE()))
|
|