日期时间数据类型的平均值

发布于 2024-12-08 21:31:59 字数 77 浏览 0 评论 0原文

我正在尝试计算具有 datetime 数据类型(标准日期时间格式)的几行的平均值。
我怎样才能做到这一点?

I am trying to calculate the average of a few rows with a datetime data type (standard datetime format).
How can I do that?

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

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

发布评论

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

评论(3

╰ゝ天使的微笑 2024-12-15 21:31:59

将日期时间转换为浮点型。 SQL 标准将其定义为自 1900 年以来的天数,因此它应该具有相当的可移植性。例如:

declare @t table (dt datetime)
insert @t select '1950-01-01'
union all select '1960-01-01'

select cast(avg(cast(dt as float)) as datetime) from @t

此结果是1955-01-01SE 数据中的示例。

Convert the datetime to a float. The SQL standard defines that as the number of days since 1900, so it should be fairly portable. For example:

declare @t table (dt datetime)
insert @t select '1950-01-01'
union all select '1960-01-01'

select cast(avg(cast(dt as float)) as datetime) from @t

This result is1955-01-01. Example at SE Data.

转身泪倾城 2024-12-15 21:31:59

这是在 MySql 中获取 DateTime 列的平均值的方法:

create temporary table table_1 (
    aDate DateTime
);

insert into table_1 values
    ('2000-01-01 00:00:00'),
    ('2010-01-01 00:00:00');

select CAST(avg(aDate) as DateTime) from table_1;
-- Result: "2005-01-01 00:00:00"

This is how to get the average of a DateTime column in MySql:

create temporary table table_1 (
    aDate DateTime
);

insert into table_1 values
    ('2000-01-01 00:00:00'),
    ('2010-01-01 00:00:00');

select CAST(avg(aDate) as DateTime) from table_1;
-- Result: "2005-01-01 00:00:00"
一百个冬季 2024-12-15 21:31:59

PostgreSQL中,您可以:

SELECT to_timestamp(avg(EXTRACT(EPOCH FROM my_timestamp)))
  FROM my_tbl;

详细手册中的更多信息这里

In PostgreSQL you could:

SELECT to_timestamp(avg(EXTRACT(EPOCH FROM my_timestamp)))
  FROM my_tbl;

More info in the fine manual here.

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