14.Oracle数据库SQL开发之 使用逻辑操作符
欢迎转载,转载请标明出处:http://blog.csdn.net/notbaron/article/details/49107037
逻辑操作符允许使用逻辑条件来限制所查询的结果。
如下图1所示
例如:
SQL>select * from customers where dob>'01-jan-1970' and customer_id>3;
CUSTOMER_IDFIRST_NAME LAST_NAME DOB PHONE
----------- ---------- ---------- ---------------------
5 Doreen Blue 20-MAY-70
使用OR如下:
SQL>select * from customers where dob >'01-jan-1970' or customer_id>3;
CUSTOMER_ID FIRST_NAME LAST_NAME DOB PHONE
----------- ---------- ---------- ---------------------
3 Steve White 16-MAR-71 800-555-1213
4 Gail Black 800-555-1214
5 Doreen Blue 20-MAY-70
也可以使用逻辑操作符AND和OR将多个表达式组合在一起使用。