Postgres SQL Syntax - Mailing list pgsql-general

From Jim C.
Subject Postgres SQL Syntax
Date
Msg-id epu2jq$vl8$1@sea.gmane.org
Whole thread Raw
Responses Re: Postgres SQL Syntax  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Postgres SQL Syntax  (Ron Johnson <ron.l.johnson@cox.net>)
Re: Postgres SQL Syntax  ("Jim C." <jlistnews@gmail.com>)
List pgsql-general
I've a postgres statement that reads:

CREATE TABLE "channel" (
    "chanid" int NOT NULL default '0',
      "channum" varchar(10) NOT NULL default '',
    "freqid" varchar(10) default NULL,
    "sourceid" int default NULL,
.
.
.
    PRIMARY KEY  ("chanid"),
    KEY "channel_src" ("channum","sourceid")
);

Postgres is choking on the KEY statement at the end.

> ERROR:  table "channel" does not exist
> ERROR:  syntax error at or near "(" at character 886

What's the proper postgres syntax for a double key like this?

Where can I find good examples of postgres syntax?

pgsql-general by date:

Previous
From: "d"
Date:
Subject: Append text using Concat on an Update query
Next
From: Tom Lane
Date:
Subject: Re: Postgres SQL Syntax