日期:2014-05-18 浏览次数:20692 次
SELECT ID FROM TABLE AS T WHERE EXISTS (SELECT * FROM TABLE WHERE T.NAME = NAME AND T.PAY <> PAY)
------解决方案--------------------
贴错了运行结果,
IF OBJECT_ID('[test]') IS NOT NULL DROP TABLE [test] GO CREATE TABLE [test]([id] int,[name] varchar(10),[pay] int) insert into [test] select 1,'aaa',1 union all select 2,'aaa',2 union all select 3,'ccc',3 union all select 4,'ddd',2 union all select 5,'ccc',5 union all select 6,'eee',3 union all select 7,'aaa',3 union all select 8,'ddd',2 select * from [test] t where exists ( select 1 from [test] where t.[name]=[name] and t.[pay]<>[pay]) /* (8 row(s) affected) id name pay ----------- ---------- ----------- 1 aaa 1 2 aaa 2 3 ccc 3 5 ccc 5 7 aaa 3 (5 row(s) affected) */