1.ANY关键字
假设any内部的查询语句返回的结果个数是三个,如:result1,result2,result3,那么,
select ...from ... where a > any(...);
->
select ...from ... where a > result1 or a > result2 or a > result3;
2.ALL关键字
ALL关键字与any关键字类似,只不过上面的or改成and。即:
select ...from ... where a > all(...);
->
select ...from ... where a > result1 and a > result2 and a > result3;
3.SOME关键字
some关键字和any关键字是一样的功能。所以:
select ...from ... where a > some(...);
->
select ...from ... where a > result1 or a > result2 or a > result3;
 

最新文章

  1. python的编码判断_unicode_gbk/gb2312_utf8(附函数)
  2. [nRF51822] 2、D-BUG之诗
  3. Objective-C( Foundation框架 一 数组(NSMutableArray))
  4. 蓝牙BLE MTU规则与约定
  5. UIView的frame和bounds的含义
  6. maven项目如何引用本地的jar包
  7. Android JNI so库的开发
  8. 【BootStrap】 布局组件 I
  9. APK改之理 手游修改改编安卓程序工具安装使用教程
  10. Python下载安装
  11. 使用Xshell在Windows系统和Linux系统之间进行文件传输
  12. wordpress中常用的一些php代码
  13. pandas 初识(二)
  14. BeanUtils.populate的方法的作用
  15. 如何同步删除svn管理的package包目录
  16. JavaScript(select onchange)的网页跳转的简单实现
  17. 精读 SBAR SDN flow-Based monitoring and Application Recognition
  18. vue 路由缓存 路由嵌套 路由守卫 监听物理返回
  19. CodeForces 732E Sockets
  20. 操作BOM

热门文章

  1. 线上学习-语言模型 language model
  2. 从蜘蛛侠到仙剑,为何知名IP都要开发VR游戏?
  3. linux的压力测试工具
  4. HDFS核心类FileSystem的使用
  5. Java自学-集合框架 HashMap和Hashtable的区别
  6. Practical aspects of deep learning
  7. word2vec生成后缀名model文件处理
  8. 1.ORM介绍,基本配置及通过ORM框架创建表
  9. Thread的join方法
  10. vue element 时间选择器设置禁用日期