id_p | row_x | row_y
table_b
id_p | row_x | row_y
мне нужно подобное условие :
если в table_a row_x != NULL и или row_y != NULL ,
а также в table_b row_x == NULL и или row_y == NULL
ТО :
обновить table_b.row_x = table_a.row_x
table_b.row_y = table.row_y
where table_a.id_p = table_b.id_p
всем заранее спасибо!
Ну что-то вроде этого update table_b b0 set row_x = a.row_x, row_y = a.row_y from table_a a inner join table_b b on b.id_p = a.id_p and b.row_x is null and b.row_y is null where a.row_x is not null and a.row_y is not null and b.id_p = b0.id_p
Обсуждают сегодня