I have two tables t1, t2 with similar columns, when i insert into t1, postgresql pgadmin 4 inserts the same data into t2, how to avoid this interaction?
thanks in advance
insert into t1 (col1, col2) values (v1, v2);
the result is it insert v1, v2 in both t1 and t2