date arithmetic

Поиск
Список
Период
Сортировка
От chrisj
Тема date arithmetic
Дата
Msg-id 5715425.post@talk.nabble.com
обсуждение исходный текст
Ответы Re: date arithmetic  (Osvaldo Rosario Kussama <osvaldo_kussama@yahoo.com.br>)
Список pgsql-sql
Hi ALL,

I want to do date arithmetic in SQL with a column that is integer.

example

create table bob ( col1   timestamp
, col2   int4
;

where col2 represents a number of minutes.


I want to do something like

select col1 + interval col2 minutes from bob

This is doable with most other RDBMS (DB2, Oracle MS SQL) what am I
missing??

I know one option is to create col2 as interval, but does not work for me.
How can I cast int4 to "interval minutes"
-- 
View this message in context: http://www.nabble.com/date-arithmetic-tf2075353.html#a5715425
Sent from the PostgreSQL - sql forum at Nabble.com.



В списке pgsql-sql по дате отправления:

Предыдущее
От: "Kumar Dev"
Дата:
Сообщение: Re: Change of data type
Следующее
От: Osvaldo Rosario Kussama
Дата:
Сообщение: Re: date arithmetic