PostgreSQL入门到实战
- PostgreSQL数据过滤(三)
- 官网地址
- PostgreSQL概述
- PostgreSQL中OR操作理论
- PostgreSQL中OR实操
- 更新计划
PostgreSQL数据过滤(三)
了解PostgreSQL OR逻辑运算符以及如何使用它来组合多个布尔表达式。
官网地址
声明: 由于操作系统, 版本更新等原因, 文章所列内容不一定100%复现, 还要以官方信息为准
https://www.postgresql.org/
PostgreSQL概述
PostgreSQL: 世界上最先进的开源关系数据库。
PostgreSQL中OR操作理论
-
PostgreSQL 中布尔值有三种: true, false, and null
-
PostgreSQL 使用 true, ‘t’, ‘true’, ‘y’, ‘yes’, ‘1’ 代表 true. ‘f’, ‘false’, ‘n’, ‘no’, and ‘0’ to 代表false.
-
基础语法
expression1 OR expression2
-
两两结合的结果
PostgreSQL中OR实操
数据库样例数据来源: https://blog.csdn.net/zwq56693/article/details/137473602
-
查询rental_rate = 0.99 或者 rental_rate = 2.99的数据
SELECT title, rental_rate FROM film WHERE rental_rate = 0.99 OR rental_rate = 2.99;
更新计划
欲知后事如何, 请听下回分解