Table "TBL_1" Attribute | Type |---------------+----------tbl_1_numb | int | -- сквозная нумерацияtbl_1_id | int |tbl_1_ins | text |
Table "TBL_2" Attribute | Type |---------------+----------tbl_2_numb | int | -- сквозная нумерацияtbl_2_txt | text |
update tbl_1settbl_1_ins = (select tbl_2_txt from tbl_2 where tbl_2_numb = tbl_1.tbl_1_id);
update tbl_1 t1...