postgresql随笔

前端之家收集整理的这篇文章主要介绍了postgresql随笔前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


1.日期加减天数计算

cast(cast(b.f_date as text) as date )+ 365


2.本机安装postresql默认用户名密码

用户名: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

猜你在找的Postgre SQL相关文章