“Wstaw tablicę postgreSQL” Kod odpowiedzi

PostgreSQL DODATKOWANIE

array_append(anyarray, anyelement);
The Rambling Lank

Wstaw tablicę postgreSQL

create table example(arr smallint[]);
insert into example(arr) values('{1, 2, 3}');
-- alternative syntax
create table example(arr smallint[]);
insert into example(arr) values(array[1, 2, 3]);
Energetic Eland

Odpowiedzi podobne do “Wstaw tablicę postgreSQL”

Pytania podobne do “Wstaw tablicę postgreSQL”

Więcej pokrewnych odpowiedzi na “Wstaw tablicę postgreSQL” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu