Re: Serial
От | A. Kretschmer |
---|---|
Тема | Re: Serial |
Дата | |
Msg-id | 20070403101446.GC30108@a-kretschmer.de обсуждение исходный текст |
Ответ на | Re: Serial ("Shavonne Marietta Wijesinghe" <shavonne.marietta@studioform.it>) |
Список | pgsql-sql |
am Tue, dem 03.04.2007, um 11:55:10 +0200 mailte Shavonne Marietta Wijesinghe folgendes: > thanks. I read the page you gave. Really? > > CREATE SEQUENCE seq_mytable_n_gen; > > CREATE TABLE mytable > ( > n_gen int nextval('seq_mytable_n_gen'), > mycolumn1 int, > mycolumn2 int > ); > > > i tried creating it like that. The sequence was created without any error. > But for the create table i get > > ERROR: syntax error at or near "nextval" at character 38 > > What should i do? Your question was, how to set the sequence to a new value, and my answer was: use setval(). Now you tried to create a new table. You have a simple syntax error: ,----[ example ] | test=# create sequence testseq; | CREATE SEQUENCE | test=*# create table testtab (id int default nextval('testseq')); | CREATE TABLE `---- You forgot the word 'default'. > > > Shavonne Wijesinghe > > ----- Original Message ----- > From: "A. Kretschmer" <andreas.kretschmer@schollglas.com> Please, no silly text above with fullquote below, i read from top to bottom... Andreas -- Andreas Kretschmer Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header) GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
В списке pgsql-sql по дате отправления: