首页 > 技术文章 > PostgreSQL (简称gp)小集

skyEva 2017-05-15 18:15 原文

1. SQLyog & Navicat

  SQLyog可以管理 MySQL

    Navicat 可以管理 SQL Server,MySQL,PostgreSQL,SQLite

2. 日期及加减

now()::timestamp + '-6 month'    -- 加
now()::timestamp + '6 month'     -- 减
now()::timestamp + '-6 year'
now()::timestamp + '6 day'
now()::timestamp + '1 hour'
now()::timestamp + '1 min'
now()::timestamp + '1 sec'
current_date
current_timestamp

3. 

推荐阅读