SELECT * FROM StudentWHERE Sdept!='计算机' AND Sage> (SELECT MAX(Sage) FROM Student WHERE Sdept='计算机' );这是我的理解,请参考。
select * from table where age>(select max(age) from table1 where 系别='计算机')
表结构,贴一下