Re: [SQL] Weird problem with script...

2001-01-03 Thread Richard Huxton
- Original Message - From: "Tom Lane" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, January 03, 2001 1:02 AM Subject: Re: [SQL] Weird problem with script... > [EMAIL PROTECTED] writes: > > I'm building a

Re: [SQL] Weird problem with script...

2001-01-02 Thread Tom Lane
[EMAIL PROTECTED] writes: > I'm building a script to create the tables in my database. Everything > works fine except one thing with this part of my script: > create table tbl_resume_free_text_type ( > type_id int, > type text > ); > -- insert into tbl_resume_free_text_type

[SQL] Weird problem with script...

2001-01-02 Thread jkakar
Hi, I'm building a script to create the tables in my database. Everything works fine except one thing with this part of my script: create table tbl_resume_free_text_type ( type_id int, type text ); -- insert into tbl_resume_free_text_type (type_id, type) values (1, 'Hobbies');