在postgresql中計算時間差的方法:1.啟動postgresql服務;2.登錄postgresql數據庫;3.使用數據庫;4.使用date_part()函數計算;
具體步驟如下:
1.首先,在命令行中啟動postgresql服務;
net start postgresql
2.postgresql服務啟動后,在命令行中登錄到postgresql數據庫;
psql -h -U
3.登錄到postgresql數據庫后,在postgresql選擇一個數據庫并使用;
\c text
4.最后,進入到數據庫后,在數據庫中使用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);