select * from table where id in(1,2,3), 有没有 (1,2,3) in (1,2,3,4) 这样的方法

mysql
select * from table where id in(1,2,3), 有没有 (1,2,3) in (1,2,3,4) 这样的方法

你这是想做去重还是筛选?可以二次筛查

问题描述的有些不清晰,where id in (1,2,3)这样写是对的啊,但是后面那个有什么意义呢,不根据字段来判断,根本过滤不了表的数据啊,即便能写,和 where 1=1有什么区别呢?