我有表像SQL - PostgreSQL中,基於其他列的增量列的值
create table test(employee integer NOT NULL, code character varying(200), number integer)
我想自動遞增列「數量」上的每個插入記錄
insert into test(employee, code) values(17,'bangalore')
insert into test(employee, code) values(17,'bangalore')
insert into test(employee, code) values(17,'mumbai')
我想導致像
employee code number
17 bangalore 1
17 bangalore 2
17 bangalore 3
17 mumbai 1
17 mumbai 2
17 bangalore 4
17 mumbai 3
18 bangalore 1
18 bangalore 2
18 mumbai 1
18 mumbai 2
做**不**發佈代碼或註釋中的其他信息。 ** [編輯] **你的問題。 –
你爲什麼要存儲這些信息?您可以在檢索數據時輕鬆生成這些數字。 –
我想存儲多個地方引用的相同數據 –