Re: Query in SQL statement
От | Christopher Kings-Lynne |
---|---|
Тема | Re: Query in SQL statement |
Дата | |
Msg-id | 433BEC06.40004@familyhealth.com.au обсуждение исходный текст |
Ответ на | Query in SQL statement ("R, Rajesh (STSD)" <rajesh.r2@hp.com>) |
Ответы |
Re: Query in SQL statement
|
Список | pgsql-hackers |
> CREATE SEQUENCE ai_id; > CREATE TABLE badusers ( > id int DEFAULT nextval('ai_id') NOT NULL, > UserName varchar(30), > Date datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, > Reason varchar(200), > Admin varchar(30) DEFAULT '-', > PRIMARY KEY (id), > KEY UserName (UserName), > KEY Date (Date) > ); > > > Am always getting foll. Errors, > > ERROR: relation "ai_id" already exists > ERROR: syntax error at or near "(" at character 240 You have just copied the Mysql code to Postgresql. It will in no way work. Your default for 'Date' is illegal in postgresql and hence it must allow NULLs. There is no such thing as a 'datetime' type. There is no such thing as 'Key'. Also your mixed case identifiers won't be preserved. You want: CREATE TABLE badusers ( id SERIAL PRIMARY KEY, UserName varchar(30), Date timestamp, Reason varchar(200), Admin varchar(30) DEFAULT '-' ); CREATE INDEX UserName_Idx ON badusers(Username); CREATE INDEX Date_Idx ON badusers(Date);
В списке pgsql-hackers по дате отправления: