在 SQL Server 2008 R2 中创建索引视图和 Group BY 时出现问题

发布于 2024-10-07 04:15:15 字数 720 浏览 2 评论 0原文

我想使用这样的 t-sql 创建索引视图:

    Select
   Table1_ID,
   cast(CONVERT(varchar(8),
   t2.Object_CreationDate, 112)AS DateTime) as Object_CreationDate ,
   Count_BIG(*) as ObjectTotalCount 
   from
       [dbo].Table2 t2 inner join [dbo].Table1 t1 on ...   
   Group BY
       Table1_ID, CONVERT(varchar(8), t2.Object_CreationDate, 112))

我需要仅按列 Object_CreationDatedatepart (类型 日期时间2)。

另外,我想在派生视图中的列 Theme_IdObject_CreationDate 上设置索引。
如果我在 SELECT 中使用 cast(CONVERT(varchar(8), m.Mention_CreationDate, 112)AS DateTime) - 我会遇到此列上的索引问题。因为此列 (Object_CreationDate) 不是确定性的。

我想知道是否可以解决问题。

I want to create indexed view with such t-sql:

    Select
   Table1_ID,
   cast(CONVERT(varchar(8),
   t2.Object_CreationDate, 112)AS DateTime) as Object_CreationDate ,
   Count_BIG(*) as ObjectTotalCount 
   from
       [dbo].Table2 t2 inner join [dbo].Table1 t1 on ...   
   Group BY
       Table1_ID, CONVERT(varchar(8), t2.Object_CreationDate, 112))

I need to make group by only by datepart of column Object_CreationDate (type datetime2 ).

Also I want to set index on columns Theme_Id AND Object_CreationDate in the derived view.
If I use cast(CONVERT(varchar(8), m.Mention_CreationDate, 112)AS DateTime) in SELECT - I'll get problems with index on this column. Because this column (Object_CreationDate) is not deterministic.

I wonder if it is possible to solve a problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2024-10-14 04:15:15

将 ... ... 替换

CONVERT(varchar(8), t2.Object_CreationDate, 112))

DATEADD(day, DATEDIFF(day, 0, t2.Object_CreationDate), 0)
--OR
CAST(t2.Object_CreationDate AS date)

第二个格式仅适用于 SQL Server 2008+,第一个格式更通用

这将从日期/日期时间数据类型域中的日期时间值中删除时间组件,而无需任何中间区域设置相关的日期时间格式

请参阅以下答案: 一个两个(评论)

replace ...

CONVERT(varchar(8), t2.Object_CreationDate, 112))

... with

DATEADD(day, DATEDIFF(day, 0, t2.Object_CreationDate), 0)
--OR
CAST(t2.Object_CreationDate AS date)

The 2nd format is SQL Server 2008+ only, the 1st is more general

This removes the time component from a datetime value in the date/datetime datatype domain without any intermediate locale dependent datetime formats

See these answers: One and Two(comments)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文