sql-server – 类型DATE不是定义的系统类型

前端之家收集整理的这篇文章主要介绍了sql-server – 类型DATE不是定义的系统类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
尝试这样做,放弃时间
select CONVERT(char(10),[Reg Date1],103) [Reg Date],Regs
    from (
          select cast(SetupDateTime as DATE) [Reg Date1],COUNT(distinct ID) [Regs]
          from dbo.tbl_User
          where cast(SetupDateTime as DATE) 
                between cast((DATEADD (dd,-7,GETDATE())) AS DATE) 
                    and cast((DATEADD (dd,-1,GETDATE())) AS DATE)
          group by cast(SetupDateTime as DATE)
        ) a
    order by a.[Reg Date1]

但我收到这个错误

Msg 243,Level 16,State 1,Line 1
Type DATE is not a defined system type.

@H_403_12@解决方法
您正在使用sql Server 2005或更早版本.数据类型 datesql Server 2008中引入.尝试将其转换为 datetime.

看一下关于如何从datetime中删除时间部分的这个问题. Best approach to remove time part of datetime in SQL Server

原文链接:https://www.f2er.com/mssql/76082.html

猜你在找的MsSQL相关文章