web-dev-qa-db-fra.com

INSERT impossible: ERREUR: la valeur du tableau doit commencer par "{" ou les informations de dimension

journeypost=# INSERT INTO user_data.user_data (username,randomint) VALUES ('mahman',1);
ERROR:  array value must start with "{" or dimension information
LINE 1: ... user_data.user_data (username,randomint) VALUES ('mahman...

journeypost=# INSERT INTO user_data.user_data (username,randomint) VALUES {'mahman',1};
ERROR:  syntax error at or near "{"
LINE 1: ...O user_data.user_data (username,randomint) VALUES {'mahman',...

journeypost=# INSERT INTO user_data.user_data (username,randomint) VALUES (2,{'mahman',1});
ERROR:  syntax error at or near "{"
LINE 1: ...ser_data.user_data (username,randomint) VALUES (2,{'mahman',...

Les différentes instructions INSERT ci-dessus échouent, dans PostgreSQL. Qu'est-ce que je fais mal?

ÉDITER:

Mon schéma:

journeypost=# \dt user_data.*
           List of relations
  Schema   |   Name    | Type  | Owner 
-----------+-----------+-------+-------
 user_data | user_data | table | user
(1 row)

Ma table:

journeypost=# \d user_data.user_data
           Table "user_data.user_data"
  Column   |          Type           | Modifiers 
-----------+-------------------------+-----------
 username  | character varying(50)[] | not null
 randomint | integer                 | 
Indexes:
    "UsernameUnique" PRIMARY KEY, btree (username)
15
Noob Doob

Votre colonne username semble être un type de tableau , donc le littéral 'mahman' Est entrée non valide pour cela.

Il faudrait que ce soit '{mahman}':

INSERT INTO user_data.user_data (username,randomint)
VALUES ('{mahman}',1);

(Ou faites-en plutôt une simple colonne varchar ou une colonne text.)

La mise à jour le confirme: character varying(50)[] est un tableau de character varying(50).

25
Erwin Brandstetter