Re: Create table syntax

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Create table syntax
Дата
Msg-id Pine.BSF.4.21.0108301041470.53788-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Create table syntax  ("satish rao " <csr_del@rediffmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Arne Weiner
Дата:
Сообщение: Re: Create table syntax
Следующее
От: Arne Weiner
Дата:
Сообщение: Re: Where can I find the SQL Commands that I can use with ECPG