mysql数据库中两个表的比较对比和提取数据
发布网友
发布时间:2022-04-25 18:11
我来回答
共1个回答
热心网友
时间:2022-04-08 11:43
先试试这样能不能取到记录
select tb.* from (select * from a,b) as tb where instr(tb.content,tb.name)>0
如果可以的话
insert into c select tb.* from (select * from a,b) as tb where instr(tb.content,tb.name)>0