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)
总结以上是内存溢出为你收集整理的postgresql随笔全部内容,希望文章能够帮你解决postgresql随笔所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)