码迷,mamicode.com
首页 > 数据库 > 详细

ORACLE中AND与OR的优先级

时间:2014-10-15 19:34:11      阅读:478      评论:0      收藏:0      [点我收藏+]

标签:http   sp   html   ef   bs   htm   oracle   tt   rom   

 

突然发现,把基础给忘了,AND的优先级大于OR,试验如下:

 

--Y
select ‘Y‘ from dual where 1=2 and 1=2 or 1=1;

--Y
select ‘Y‘ from dual where (1=2 and 1=2) or 1=1;

--No value
select ‘Y‘ from dual where 1=2 and (1=2 or 1=1);

 

一般来说,与>或>非。

附,Oracle文档:

http://docs.oracle.com/cd/E17952_01/refman-5.1-en/operator-precedence.html

 

ORACLE中AND与OR的优先级

标签:http   sp   html   ef   bs   htm   oracle   tt   rom   

原文地址:http://www.cnblogs.com/nick-huang/p/4027038.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!