Re: Create table syntax - Mailing list pgsql-sql

From Stephan Szabo
Subject Re: Create table syntax
Date
Msg-id Pine.BSF.4.21.0108301041470.53788-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Create table syntax  ("satish rao " <csr_del@rediffmail.com>)
List pgsql-sql
On 28 Aug 2001, satish rao  wrote:

> Entered below is the SQL create table syntax:
> 
> CREATE TABLE lists (
>     [listid] [int] IDENTITY (1, 1) NOT NULL ,
>     [listname] [varchar] (200) NULL ,
>     [listcreator] [varchar] (200) NULL ,
>     [listdesc] [text] NULL)

create table lists (listid serial not null,listname varchar(200),listcreator varchar(200),listdesc text);

(You may want to make listid a primary key as well)



pgsql-sql by date:

Previous
From: Arne Weiner
Date:
Subject: Re: Create table syntax
Next
From: Arne Weiner
Date:
Subject: Re: Where can I find the SQL Commands that I can use with ECPG