mysql insert根据A表添加B表的sql语句

2025-01-01 22:34:20
推荐回答(1个)
回答1:

insert into b select * from a where not exist(select * from a,b where a.name=b.name and a.model=b.model);