?How create a one serial decimal(500,0) column or simulate it withbigint multicolumns serial?
От | Dani |
---|---|
Тема | ?How create a one serial decimal(500,0) column or simulate it withbigint multicolumns serial? |
Дата | |
Msg-id | CAEXvJLfO6-=6jBe+kdSV3eOV4SACttkqYu9A59qjqKE_MBk6-Q@mail.gmail.com обсуждение исходный текст |
Ответы |
Re: ?How create a one serial decimal(500,0) column or simulate it with bigint multicolumns serial?
Re: ?How create a one serial decimal(500,0) column or simulate itwith bigint multicolumns serial? Re: ?How create a one serial decimal(500,0) column or simulate itwith bigint multicolumns serial? |
Список | pgsql-novice |
Hi! All!
I Need create a one decimal serial column or simulate it with multiple columns of bigint.create table bank (
id0 decimal( 500, 0) not null auto-increment,
etc text
)
)
or
create table bank (
id0 bigint not null,
id1 bigint not null,
id2 bigint not null,
idn bigint not null,
etc text
primary key(id0, id1, id2, idn),
auto_increment(id0, id1, id2, idn)
)
id0 id1 id2 idn text
1 1 1 1 T
1 1 1 2 T
1 1 1 3 T
1 1 2 1 T
1 1 2 2 T
1 1 2 3 T
1 1 3 1 T
1 1 3 2 T--
"There are many plans in the Human heart, But
is the Lord's Purpose that prevails"
"Existem Muitos planos e desejos no coração Humano, MAS
são os Propósitos do Senhor que prevalecem"
[]'s Dani:-)
is the Lord's Purpose that prevails"
"Existem Muitos planos e desejos no coração Humano, MAS
são os Propósitos do Senhor que prevalecem"
[]'s Dani:-)
В списке pgsql-novice по дате отправления: