In addition to Weibo, there is also WeChat
Please pay attention

WeChat public account
Shulou
2025-11-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article shows you how to achieve short-circuit and non-short-circuit function in oracle, concise and easy to understand, absolutely can make your eyes shine, through the detailed introduction of this article I hope you can gain something.
Tip: Shorting reduces execution and optimizes performance!
Operators: AND and OR have short-circuit calculation function, common function is what?
1: Non-short circuit function
1:NVL
2: NVL2
2: Short circuit function
1: decode
2: case when
3: coalesce
III: Experiment
SQL> select * from v$version;BANNER--------------------------------------------------------------------------------Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit ProductionPL/SQL Release 11.2.0.1.0 - ProductionCORE 11.2.0.1.0 ProductionTNS for 64-bit Windows: Version 11.2.0.1.0 - ProductionNLSRTL Version 11.2.0.1.0 - Production--NVL(1,0,1) = 2 shorted SQL> select * from dual where 1 = 1 or nvl(1/0,2) = 2;DU--X--NVL(1,0,1) = 2 shorted SQL> select * from dual where 1 = 2 and nvl(1/0,1) = 2;no rows selected--1/0 continue operation, non-short SQL> select nvl(1,1/0) from dual; select nvl(1,1/0) from dual * ERROR at line 1: ORA-01476: divisor is equal to zero--1/0 continue operation, non-short SQL> select nvl2(null,1/0,2) from dual;select nvl2(null,1/0,2) from dual *ERROR at line 1:ORA-01476: divisor is equal to zero--1/0 no operation, short-circuiting SQL> select decode(1,1,2,1/0) from dual;DECODE(1,1,2,1/0)----------- 2 SQL> select coalesce(null,1,1/0) from dual;COALESCE(NULL, 1, 1/0)-------------------- SQL> select case when 1 is not null then 1 else 1/0 end col from dual;COL-------1 The above content is how to implement short circuit and non-short circuit functions in oracle. Have you learned knowledge or skills? If you want to learn more skills or enrich your knowledge reserves, please pay attention to the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope





About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.