在 T-SQL 中动态拆分日期时间字段

发布于 2024-11-26 17:53:29 字数 333 浏览 3 评论 0原文

这是我写的一个查询,我认为可能是我想要的。我认为通过查看它,您可以看到我正在尝试做什么:

INSERT INTO tbTime
SELECT DISTINCT
    DATEPART(yyyy, ed),
    DATEPART(mm, ed),
    DATEPART(dd, ed),
    EntireDate AS ed
FROM test

我基本上是从另一个表复制日期字段,但我想将其即时拆分为年、月和日字段。但上面的查询不起作用:

无效的列名“ed”。

我使用的是 SQL Server 2008,谢谢!

This is a query I wrote that I thought might be what I wanted. I think by looking at it you can see what I'm trying to do:

INSERT INTO tbTime
SELECT DISTINCT
    DATEPART(yyyy, ed),
    DATEPART(mm, ed),
    DATEPART(dd, ed),
    EntireDate AS ed
FROM test

I am basically copying the date field over from another table, but I want to split it up into year, month, and day fields on-the-fly. The above query won't work though:

Invalid column name 'ed'.

I am using SQL Server 2008, thank you!

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

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

发布评论

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

评论(1

半岛未凉 2024-12-03 17:53:29

您不能为字段添加别名,然后在 SELECT 语句的其他部分使用该别名。

尝试:

INSERT INTO tbTime
SELECT DISTINCT
    DATEPART(yyyy, EntireDate),
    DATEPART(mm, EntireDate),
    DATEPART(dd, EntireDate),
    EntireDate AS ed
FROM test

You can't alias a field, then use that alias in other parts of the SELECT statement.

Try:

INSERT INTO tbTime
SELECT DISTINCT
    DATEPART(yyyy, EntireDate),
    DATEPART(mm, EntireDate),
    DATEPART(dd, EntireDate),
    EntireDate AS ed
FROM test
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文