1.日期加减天数计算
cast(cast(b.f_date as text) as date )+ 365
用户名:postgres
密码:postgres
数据库:postgres
3.两个日期计算
select date'20170302' - date'20170228'
4.
select to_char(current_date,'yyyymmdd');--date 转 text
select to_char(current_date - 1,'yyyymmdd');--date 转 text
select cast(to_char(current_date - 1,'yyyymmdd') as int);--date转ext,再转integer
5.10 * * * * cd /home/xx/xx/xx && python zzz.py > log.txt 2>&1
6.MysqL中当前日期 select date_format(now(),'%Y%m%d') ;其中%Y表示4位年数,%y表示两位年数
前一天为DATE_SUB(date_format(now(),'%Y%m%d'),INTERVAL 1 day)
postgredql中 cast(to_char(current_date - 1,'yyyymmdd') as int)
原文链接:https://www.f2er.com/postgresql/193908.html