PostgreSQL与Oracle对应的函数

一、对应的函数

1.sysdate

oracle pgsql
sysdate current_date、 current_timestamp
nvl coalesce
 trunc date_trunc(text, timestamp)
   
   
   
   

二、参考资料

1.What is PostgreSQL equivalent of SYSDATE from Oracle?

原文地址:https://www.cnblogs.com/shirui/p/8203699.html