Re: [GENERAL] Retrieving value of column X days later

2016-08-07 Thread Tim Smith
Thank you Victor Will experiment with this over the next couple of days. On 7 August 2016 at 21:41, Victor Yegorov wrote: > 2016-08-07 22:23 GMT+03:00 Tim Smith : >> >> create table test ( >> when date, >> foo numeric, >> bar numeric, >> alice numeric, >> bob numeric); >> >> insert into test val

Re: [GENERAL] Retrieving value of column X days later

2016-08-07 Thread Tim Smith
Thank you Sándor. Will experiment with this over the next couple of days. On 7 August 2016 at 21:05, Sándor Daku wrote: > On 7 August 2016 at 21:23, Tim Smith wrote: >> >> Hi, >> >> Let's say I've got a table : >> >> create table test ( >> when date, >> foo numeric, >> bar numeric, >> alice num

Re: [GENERAL] Retrieving value of column X days later

2016-08-07 Thread Victor Yegorov
2016-08-07 22:23 GMT+03:00 Tim Smith : > create table test ( > when date, > foo numeric, > bar numeric, > alice numeric, > bob numeric); > > insert into test values ('2016-01-01',1,2,3,4); > insert into test values ('2016-01-02',5,6,7,8); > insert into test values ('2016-01-03',9,10,11,12); > inse

Re: [GENERAL] Retrieving value of column X days later

2016-08-07 Thread Sándor Daku
On 7 August 2016 at 21:23, Tim Smith wrote: > Hi, > > Let's say I've got a table : > > create table test ( > when date, > foo numeric, > bar numeric, > alice numeric, > bob numeric); > > insert into test values ('2016-01-01',1,2,3,4); > insert into test values ('2016-01-02',5,6,7,8); > insert int

[GENERAL] Retrieving value of column X days later

2016-08-07 Thread Tim Smith
Hi, Let's say I've got a table : create table test ( when date, foo numeric, bar numeric, alice numeric, bob numeric); insert into test values ('2016-01-01',1,2,3,4); insert into test values ('2016-01-02',5,6,7,8); insert into test values ('2016-01-03',9,10,11,12); insert into test values ('2016