coisini002 2022-12-22 09:39 采纳率: 51.3%
浏览 42
已结题

数据库中where子语句查询条件

img


这一题我觉得A选项好像没有问题,但是答案选的是D,A选项是哪里不对吗

还有这个选项为啥选择B

img

  • 写回答

4条回答 默认 最新

  • AllenGd 大数据领域优质创作者 2022-12-22 09:59
    关注

    any 是任意一个,all 是所有
    any表示有任何一个满足就返回true,all表示全部都满足才返回true
    1、使用max和min更加直观
    比如:select * from student where 班级=’01’ and age > all (select age from student where 班级=’02’);
    就是说,查询出01班中,年龄大于 02班所有人的同学
    相当于select * from student where 班级=’01’ and age > (select max(age) from student where 班级=’02’);
    而select * from student where 班级=’01’ and age > any (select age from student where 班级=’02’);
    就是说,查询出01班中,年龄大于 02班任意一个 的 同学
    相当于select * from student where 班级=’01’ and age > (select min(age) from student where 班级=’02’);
    2、'005,'这里面有个逗号,考虑表结构,所以插入该条数据不能执行。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

问题事件

  • 系统已结题 12月30日
  • 已采纳回答 12月22日
  • 修改了问题 12月22日
  • 创建了问题 12月22日

悬赏问题

  • ¥50 adb连接不到手机是怎么回事?
  • ¥15 vs2022无法联网
  • ¥15 TCP的客户端和服务器的互联
  • ¥15 VB.NET操作免驱摄像头
  • ¥15 笔记本上移动热点开关状态查询
  • ¥85 类鸟群Boids——仿真鸟群避障的相关问题
  • ¥15 CFEDEM自带算例错误,如何解决?
  • ¥15 有没有会使用flac3d软件的家人
  • ¥20 360摄像头无法解绑使用,请教解绑当前账号绑定问题,
  • ¥15 docker实践项目