实际中用到的SQL:
select * from (select top 3 Id,
case when startSignup>GETDATE() then ‘敬请期待‘ when (startSignup<GETDATE() and endsignUp>=getdate()) then ‘正在报名‘
when (StartDate<GETDATE() and EndDate>=GETDATE())or (StartDate<GETDATE() and EndDate is null) then ‘正在进行‘ when EndDate<GETDATE() then ‘已经结束‘ else ‘‘ end [status], Name,VerifyCode,StartDate, EndDate, TrainType, AddTime, CheckStatus, [Disable],StartSignup, EndSignup, SignupLimit,[Price] from Train A where A.CheckStatus=1
and A.[Disable]=0 and A.TrainType=1 and Name not like ‘%测试%‘ order by ABS(convert(float,A.StartDate-GETDATE())))B order by startdate desc,B.Enddate desc
关键字:order by ABS(convert(float,A.StartDate-GETDATE()))