Re: Query in SQL statement

From: "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: "R, Rajesh (STSD)" <rajesh(dot)r2(at)hp(dot)com>, pgsql-hackers(at)postgresql(dot)org, pgsql-performance(at)postgresql(dot)org
Subject: Re: Query in SQL statement
Date: 2005-09-30 23:48:53
Message-ID: 20050930234853.GT40138@pervasive.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-performance

On Thu, Sep 29, 2005 at 09:28:38PM +0800, Christopher Kings-Lynne wrote:
>
> >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);

Actually, to preserve the case you can wrap everything in quotes:
CREATE ...
"UserName" varchar(30)

Of course that means that now you have to do that in every statement
that uses that field, too...

SELECT username FROM badusers
ERROR

SELECT "UserName" FROM badusers
bad user

I suggest ditching the CamelCase and going with underline_seperators.
I'd also not use the bareword id, instead using bad_user_id. And I'd
name the table bad_user. But that's just me. :)
--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Dann Corbit 2005-09-30 23:52:42 Re: [PERFORM] A Better External Sort?
Previous Message Jim C. Nasby 2005-09-30 23:41:58 Re: Found small issue with OUT params

Browse pgsql-performance by date

  From Date Subject
Next Message Dann Corbit 2005-09-30 23:52:42 Re: [PERFORM] A Better External Sort?
Previous Message Ron Peacetree 2005-09-30 23:40:09 Re: [PERFORM] A Better External Sort?