SQL AND & OR 运算符
程序员文章站
2022-04-24 10:29:48
and 和 or 运算符用于基于一个以上的条件对记录进行过滤。
and 和 or 运算符
and 和 or 可在 where 子语句中把两个或多个条件结合起来。
如果第一...
and 和 or 运算符用于基于一个以上的条件对记录进行过滤。
and 和 or 运算符
and 和 or 可在 where 子语句中把两个或多个条件结合起来。
如果第一个条件和第二个条件都成立,则 and 运算符显示一条记录。
如果第一个条件和第二个条件中只要有一个成立,则 or 运算符显示一条记录。
原始的表 (用在例子中的)
lastname | firstname | address | city |
---|---|---|---|
adams | john | oxford street | london |
bush | george | fifth avenue | new york |
carter | thomas | changan street | beijing |
carter | william | xuanwumen 10 | beijing |
and 运算符实例
使用 and 来显示所有姓为 "carter" 并且名为 "thomas" 的人:
select * from persons where firstname='thomas' and lastname='carter'
结果:
lastname | firstname | address | city |
---|---|---|---|
carter | thomas | changan street | beijing |
or 运算符实例
使用 or 来显示所有姓为 "carter" 或者名为 "thomas" 的人:
select * from persons where firstname='thomas' or lastname='carter'
结果:
lastname | firstname | address | city |
---|---|---|---|
carter | thomas | changan street | beijing |
carter | william | xuanwumen 10 | beijing |
结合 and 和 or 运算符
我们也可以把 and 和 or 结合起来(使用圆括号来组成复杂的表达式):
select * from persons where (firstname='thomas' or firstname='william') and lastname='carter'
结果:
lastname | firstname | address | city |
---|---|---|---|
carter | thomas | changan street | beijing |
carter | william | xuanwumen 10 | beijing |
上一篇: Java中的反射
下一篇: 百度网盘就“用户激励计划”致歉