使用不同的DateTime格式加入表

发布于 2025-01-20 21:44:01 字数 946 浏览 0 评论 0原文

我有两个表格不同的列的表。

表1 包含每一天(2022年3月20日)的每秒坐标:

时间坐标
2022-03-20T09:16:16:23.000x/y
2022-03-209:16:16:25.000x/x/x/y Y
2022-03-20T09:16:27.000x/y

表2 包含按时间按时间数的注册事件数量(也从3月20日开始,但我们只有时间没有日期和毫秒):

事件的时间数量
09:16:2323
09:16:2753

中的每一行提取圆柱和其他

想加入该表以从表2 :16:16:23x/y23
09:16:27x/y53

我如何使用 python sql

I have two tables with different columns representing time.

Table 1 contains coordinates for every second from one particular day (March 20, 2022):

timeCoordinates
2022-03-20T09:16:23.000x/y
2022-03-20T09:16:25.000x/y
2022-03-20T09:16:27.000x/y

Table 2 contains number of registered events by time (also from March 20, but we have just time without date and milliseconds):

timeNumber of events
09:16:2323
09:16:2753

I want to join this tables to extract column with coordinates and additional columns for every row from the Table 2. Desired result:

timeCoordinatesNumber of events
09:16:23x/y23
09:16:27x/y53

How I can do it by using Python or SQL?

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

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

发布评论

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

评论(1

缱倦旧时光 2025-01-27 21:44:01

使用 pandas,您可以确保两个时间都采用通用格式(日期时间、字符串)并合并

df1['time'] = pd.to_datetime(df1['time']).dt.time

# only if df2['time'] are strings
#df2['time'] = pd.to_datetime(df2['time']).dt.time

df1.merge(df2, on='time')

输出:

       time Coordinates  Number of events
0  09:16:23         x/y                23
1  09:16:27         x/y                53

如果您更喜欢使用字符串,您可以使用以下命令转换 df1 中的时间:pd .to_datetime(df1['time']).dt.strftime('%H:%M:%S')

With pandas you can ensure both time are in a common format (datetime, string) and merge:

df1['time'] = pd.to_datetime(df1['time']).dt.time

# only if df2['time'] are strings
#df2['time'] = pd.to_datetime(df2['time']).dt.time

df1.merge(df2, on='time')

output:

       time Coordinates  Number of events
0  09:16:23         x/y                23
1  09:16:27         x/y                53

if you rather prefer to use strings, you can convert the time in df1 with: pd.to_datetime(df1['time']).dt.strftime('%H:%M:%S')

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