mysql遍历A表的性能问题

如果有一条这个语句
select * from A where id in ('1','2'........);

假设A表有百万条数据, 我再用id去in(几千条数据)这样会不会很慢.
有没有那种一出现重复就中断查询的方法

肯定慢,用exists吧,满足你的要求

使用exists,存在则返回true否则返回false