> CREATE TABLE All_Chr_CxCb_atleast1 (
>                                         TCID            TEXT,
>                                         STRAND          TEXT,
>                                         CHROMOSOME      TEXT,
>                                         START_POS       INTEGER,
>                                         STOP_POS        INTEGER,
>                                         REPRESENT_POS   INTEGER,
>                                         TKID            INTEGER,
>                                         REPRESENT       TEXT,
>                                         SYMBOL1         TEXT,
>                                         SYMBOL2         TEXT,
>                                         LOCUSLINK       TEXT,
>                                         GO,             BLOB,
>                                         CAA             INTEGER,


You've got an extra comma here after the "GO" field.  That makes the parser
think your trying to create field named GO, followed by one named BLOB, then
one named CAA.  Remove the comma.

That should have been obvious if you'd attempted to select something from
the table with headers turned on in the command line utility.

Reply via email to