Domanda

Io sono fallendo nel creare tabelle tramite l'editor PgAdmin III SQL - anche se la sintassi è generato dal frontend:

CREATE TABLE testtable
(
   id integer, 
   "name" character varying(100)
) 
WITH (
  OIDS = FALSE
)
;

Il messaggio di errore è in tedesco, ma in pratica dice che c'è dovrebbe essere un errore di sintassi ..

FEHLER:  Syntaxfehler bei »integer«
ZEILE 3:    id integer, 
                ^

********** Fehler **********

Tutte le idee?

È stato utile?

Soluzione

funziona bene per me.

Comunque vedo l'errore è indicato in linea 11. E 'possibile la dichiarazione precedente non è stato terminato correttamente e l'interprete sceglie questo punto di rinunciare?

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top