一、嵌套查询
查询非计算机科学系中比计算机科学系任意一个学生年龄小的学生姓名和年龄
方法一:select name,age from sc where cs<>'计算机科学系' and age < ANY(select age from sc where cs='计算机科学系');
方法二:select name,age from sc where cs<>'计算机科学系' and age < ALL(select age from sc where cs='计算机科学系');
方法三:se
2024-11-08