https://docs.microsoft.com/en-us/sql/t-sql/language-elements/logical-operators-transact-sql

Logical operators test for the truth of some condition. Logical operators, like comparison operators, return a Boolean data type with a value of TRUE, FALSE, or UNKNOWN.

Operator Meaning
ALL TRUE if all of a set of comparisons are TRUE.
AND TRUE if both Boolean expressions are TRUE.
ANY TRUE if any one of a set of comparisons are TRUE.
BETWEEN TRUE if the operand is within a range.
EXISTS TRUE if a subquery contains any rows.
IN TRUE if the operand is equal to one of a list of expressions.
LIKE TRUE if the operand matches a pattern.
NOT Reverses the value of any other Boolean operator.
OR TRUE if either Boolean expression is TRUE.
SOME TRUE if some of a set of comparisons are TRUE.

最新文章

  1. Redis事件管理(三)
  2. 用xib自定义UITableViewCell
  3. NET4.5之初识async与await
  4. oracle--clob
  5. 防止服务器宕机时MySQL数据丢失的几种方案
  6. C#中foreach遍历学习笔记
  7. HDU 2451 Simple Addition Expression(组合数学)
  8. bat(批处理文件)初步 第一篇 基本符号
  9. Linux基础正则表达式:grep,sed
  10. poj2513- Colored Sticks 字典树+欧拉通路判断
  11. springboot 入门四-时间类型处理
  12. 牛客网编程练习之PAT乙级(Basic Level):1033 害死人不偿命的(3n+1)猜想
  13. Kubernetes1.7—DNS安装
  14. Nhibernate 使用 (一)
  15. codeforces 985B Switches and Lamps
  16. redhat7.2安全基线BI
  17. 【Java】 剑指offer(9) 斐波那契数列及青蛙跳台阶问题
  18. nodejs安装、环境配置和测试
  19. 转 linux常用查看硬件设备信息命令
  20. php 区分0和空

热门文章

  1. Linux下MySql数据库常用操作
  2. org.apache.hadoop.ipc.Client: Retrying connect to server
  3. ASP.NET-常用正则表达式
  4. C#-入门思维导图
  5. [Ubuntu]安装中文输入法
  6. jQuery——map()函数以及它的java实现
  7. java大数类,两个不超过20位都不为0的十进制字符串相乘,华为笔试题
  8. zzulioj--1711--漂洋过海来看你(dfs+vector)
  9. javascript系列-class4.函数
  10. Binary Indexed Tree