Rif: [Tech] AIUTO! (MYSQL: la vendetta )
dexterfillmore@tin.it
dexterfillmore@tin.it
Mer 18 Apr 2001 17:08:50 CEST
> id | integer | not null default nextval('main_id_seq'::text)
Ciao ... ti scrivo da profano (in quanto sono un MySQLista in perenne stato di conversione al PostgreSQL). Ma penso che l'errore sia qui, nel nextval e in particolare nel ::text.
Ti mando un esempio semplice semplice di tabella che ho creato in questi giorni con autoincrement.
-- Drop the table
DROP TABLE users;
-- Drop the sequence for serials (counters)
DROP SEQUENCE users_id_seq;
-- Create the sequence for serials (counters)
CREATE SEQUENCE users_id_seq START 1;
CREATE TABLE users (
id INT2 DEFAULT nextval('users_id_seq') PRIMARY KEY,
uname VARCHAR(16) NOT NULL,
<snip> [ blah blah blah ]
);
Spero di esserti d'aiuto!
Ciao
-Gabriele
P.S.: usi per caso PHPPgAdmin?
Maggiori informazioni sulla lista
flug-tech