Hi,
I have a table which has 3 fields.
reviewerid varchar(20),
proposalid varchar(20),
dt timestamp without time zone
I would like to know how I can select proposalid's belonging to a particular reviewerid for the span of 12 months?
Is it possible to get the difference in dates when it;s a sigle column? Should I change the datatype to date in which case it would be possible. please suggest. I tried interval but doesn't seem to work.
I have a table which has 3 fields.
reviewerid varchar(20),
proposalid varchar(20),
dt timestamp without time zone
I would like to know how I can select proposalid's belonging to a particular reviewerid for the span of 12 months?
Is it possible to get the difference in dates when it;s a sigle column? Should I change the datatype to date in which case it would be possible. please suggest. I tried interval but doesn't seem to work.