算法问题表11281011表2128怎么样可以快速把不相同的10,11找出来[解决办法]--刚刚笔误select * from 表1 t
算法问题
表1 1 2 8 10 11
表2 1 2 8
怎么样可以快速把不相同的10,11找出来
[解决办法]
--刚刚笔误
select * from 表1 t where not exists(select 1 from 表2 where t.列名=列名)
算法问题
表1 1 2 8 10 11
表2 1 2 8
怎么样可以快速把不相同的10,11找出来
[解决办法]
--刚刚笔误
select * from 表1 t where not exists(select 1 from 表2 where t.列名=列名)