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?
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?