IK
Size: a a a
IK
2_
IK
2_
IK
IK
2_
IK
G
СГ
G
G
СГ
G
ALTER USER user_name WITH PASSWORD 'new_password';
Спасибо Сергей =)KK
E
[[id, value], [id2, value2], [id3, value3]]
update some_table set value=value where id=id;
VG
with kv as (
select
jsonb_object_agg(t ->> 0, t ->> 1) from
jsonb_array_elements(
to_jsonb('{{a, 1}, {b, 4}, {c, 9}}'::text[][])) t
)
update some_table st
set value = (select * from kv)->st.id
where (select * from kv) ? st.id
VG
ВК
A