id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	due_date
99	oracle的sysdate转pg的now()的一些过程	liaojunqiang		"oracle：
select sysdate from dual;
pg：
select now();

oracle:
sysdate - 30/24/60
这个代表现在时间减30分，sysdate - 30/24这个就是30个小时，其他的，你懂的。
pg：
now()::timestamp + '-30 min'

oracle:
to_date(to_char(sysdate,'yyyy-MM-dd'),'yyyy-MM-dd')
pg:
比较笨的方法
to_date(to_char(now(),'yyyy-MM-dd'),'yyyy-MM-dd')
简单直接的方法
current_date

除了这些其他都可以放心的直接替换，这个只是指商城喔。
"	QA	closed	trivial	2012年6.0版本	系统相关	6.0	fixed	now(),sysdate,数据库迁移		12/04/2012
