Monthly ArchiveJanuary 2007
BSD/Linux & Tips & Tricks SquallBSR on 28 Jan 2007
Auto Incrementing Database Fields
postgres: create table t( id serial, data text, primary key (id) ); mysql: create table t( id int(11) not null auto_increment, data text, primary key (id) ); sqlite: create table t( id integer primary key, data text, );