Re: [GENERAL] Using currval() in an insert statement...

2006-07-25 Thread Shoaib Mir
Try it out the following way:create table test (var1 int);create sequence s1;select s1.nextval;insert into test values (s1.currval);select * from test;Thanks,Shoaib Mir EnterpriseDB (www.enterprisedb.com)On 7/25/06, Redefined Horizons < [EMAIL PROTECTED]> wrote:I'm having trouble figuring out how t

Re: [GENERAL] Using currval() in an insert statement...

2006-07-25 Thread Brad Nicholson
On Tue, 2006-07-25 at 10:45 -0700, Redefined Horizons wrote: > I'm having trouble figuring out how to use the currval() function for > sequences in an INSERT statement. I did some searching online, but > couldn't find what I was looking for. > > I have two Schemas in my Database: > > metadata > g

[GENERAL] Using currval() in an insert statement...

2006-07-25 Thread Redefined Horizons
I'm having trouble figuring out how to use the currval() function for sequences in an INSERT statement. I did some searching online, but couldn't find what I was looking for. I have two Schemas in my Database: metadata geometry I have a table named "metadata_geometries" in the metadata schema.