在postgresl中查詢指定日期數據的方法:1.啟動postgresql服務;2.登錄postgresql數據庫;3.執行命令查詢指定日期數據;
具體步驟如下:
1.首先,在命令行中啟動postgresql服務;
net start postgresql
2.postgresql服務啟動后,在命令行中登錄到postgresql數據庫;
psql -h -U
3.登錄到postgresql數據庫后,在postgresql選擇一個數據庫并使用;
\c text
4.進入到數據庫后,在數據庫中執行以下命令即查詢指定日期的數據;
#查詢text庫中2021年4月25日的所有記錄
select * from text where score_type is null and to_char(insert_time,'yyyy-mm-dd')='2021-04-25';