有问题
示例
ID ID2
1 100
3 100
5 100
1 110
2 110
4 110
select * from table where ID in (1,4) ---executing not correctly
select * from table where ID = '1' and ID = '4' ---not work
我需要 ID2 为“110”(选择具有 2 个值 ID 的 ID2)
谢谢。