怎么在postgresl中查詢指定時(shí)間段的數(shù)據(jù)

養(yǎng)魚的貓咪
367
2021-04-27 10:10:22

在postgresl中查詢指定時(shí)間段數(shù)據(jù)的方法:1.啟動(dòng)postgresql服務(wù);2.登錄postgresql數(shù)據(jù)庫(kù);3.執(zhí)行命令查詢指定時(shí)間段數(shù)據(jù);

怎么在postgresl中查詢指定時(shí)間段的數(shù)據(jù)

具體步驟如下:

1.首先,在命令行中啟動(dòng)postgresql服務(wù);

net start postgresql

2.postgresql服務(wù)啟動(dòng)后,在命令行中登錄到postgresql數(shù)據(jù)庫(kù);

psql -h -U

3.登錄到postgresql數(shù)據(jù)庫(kù)后,在postgresql選擇一個(gè)數(shù)據(jù)庫(kù)并使用;

\c text

4.進(jìn)入到數(shù)據(jù)庫(kù)后,在數(shù)據(jù)庫(kù)中執(zhí)行以下命令即查詢指定時(shí)間段的數(shù)據(jù);

#查詢text庫(kù)中2021年4月1日至2021年4月26日的記錄

SELECT * FROM text WHERE login_date BETWEEN '2021-04-01' AND '2021-04-26';

0