2021-10-23から1日間の記事一覧

phantom unique key violation

DB

MySQLとPostgreSQLは発生するOracleとSQL Serverは発生しない MySQL (8.0.26)https://nodoame.net/archives/8026 drop table tab1;create table tab1(col1 int primary key,col2 int); insert into tab1 values(1,1);insert into tab1 values(2,2); select *…