在postgresql中计算时间差的方法:1.启动postgresql服务;2.登录postgresql数据库;3.使用数据库;4.使用date_part()函数计算;具体步骤如下:首先,在命令行中启动postgresql服务;net st
在postgresql中计算时间差的方法:1.启动postgresql服务;2.登录postgresql数据库;3.使用数据库;4.使用date_part()函数计算;
具体步骤如下:
首先,在命令行中启动postgresql服务;
net start postgresql
postgresql服务启动后,在命令行中登录到postgresql数据库;
psql -h -U
登录到postgresql数据库后,在postgresql选择一个数据库并使用;
\c text
最后,进入到数据库后,在数据库中使用date_part()函数即可计算两个时间的时间差;
#计算2021年4月20日10时12分15秒至2021年4月26日10时12分15秒的时间差
select date_part('day','2021-04-20 15:49:15'::timestamp-'2021-04-26 10:12:15'::timestamp);
--结束END--
本文标题: 怎么在postgresql中计算时间差
本文链接: https://lsjlt.com/news/110943.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0