PGSQL查詢今天的數據
select *
from 表名 as n
where n.create_date>=current_date;
PG查詢昨天的數據
方法1:
select *
from 表名 as n
where
age(
current_date,to_timestamp(substring(to_char(n.create_date, 'yyyy-MM-dd hh24 : MI : ss' ) FROM 1 FOR 10),'yyyy-MM-dd')) ='1 days';
方法2:
select *
from 表名 as n
where n.create_date>=current_date-1 and n.create_date current_date;
n.create_date 是一個timestamp的數據;
current_date是pgsql數據一個獲取當前日期的字段;
to_char(timestamp,text)把timestamp數據轉換成字符串;
substring(text from int for int) 截取想要的文本格式 ‘yyyy-MM-dd';
to_timestamp(text,'yyyy-MM-dd')轉換成timestamp格式;
age(timestamp,timestamp)獲取兩個時間之差 返回 days
PG查詢最近一個月內的數據
select *
from 表名 as n
and n.create_date>=to_timestamp(substring(to_char(now(),'yyyy-MM-dd hh24:MI:ss') FROM 1 FOR 10),'yyyy-MM-dd')- interval '30 day';
補充:postgresql 查詢當前時間
需求:PostgreSQL中有四種獲取當前時間的方式。
解決方案:
1.now()
返回值:當前年月日、時分秒,且秒保留6位小數。
2.current_timestamp
返回值:當前年月日、時分秒,且秒保留6位小數。(同上)
申明:now和current_timestamp幾乎沒區(qū)別,返回值相同,建議用now。
3.current_time
返回值:時分秒,秒最高精確到6位
4.current_date
返回值:年月日
以上為個人經驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- pgsql 變量賦值方法及注意事項
- pgsql 實現分頁查詢方式
- Postgresql 存儲過程(plpgsql)兩層for循環(huán)的操作
- pgsql之create user與create role的區(qū)別介紹
- pgsql之pg_stat_replication的使用詳解
- pgsql 如何刪除仍有活動鏈接的數據庫
- pgsql 解決包含有單引號的字符串操作