Özel bir sıra kullanarak postgresql'de otomatik artan bir birincil anahtar oluşturun:
1. Adım, dizinizi oluşturun:
create sequence splog_adfarm_seq
start 1
increment 1
NO MAXVALUE
CACHE 1;
ALTER TABLE fact_stock_data_detail_seq
OWNER TO pgadmin;
2. Adım, tablonuzu oluşturun
CREATE TABLE splog_adfarm
(
splog_key INT unique not null,
splog_value VARCHAR(100) not null
);
3. Adım, tablonuza yerleştirin
insert into splog_adfarm values (
nextval('splog_adfarm_seq'),
'Is your family tree a directed acyclic graph?'
);
insert into splog_adfarm values (
nextval('splog_adfarm_seq'),
'Will the smart cookies catch the crumb? Find out now!'
);
4. Adım, satırları gözlemleyin
el@defiant ~ $ psql -U pgadmin -d kurz_prod -c "select * from splog_adfarm"
splog_key | splog_value
----------+--------------------------------------------------------------------
1 | Is your family tree a directed acyclic graph?
2 | Will the smart cookies catch the crumb? Find out now!
(3 rows)
İki satır, diziden tanımlandığı gibi 1 ile başlayan ve 1 ile artan anahtarlara sahiptir.
Bonus Elite ProTip:
Programcılar yazmaktan ve nefret etmekten nefret eder nextval('splog_adfarm_seq')
. Bunun DEFAULT
yerine bu parametre için şunu yazabilirsiniz :
insert into splog_adfarm values (
DEFAULT,
'Sufficient intelligence to outwit a thimble.'
);
Yukarıdakilerin çalışması için, splog_adfarm tablosundaki o anahtar sütun için varsayılan bir değer tanımlamanız gerekir. Hangisi daha güzel.