Structure of Oracle PL/SQL IF statements

Source: Internet
Author: User

The structure of the Oracle IF statement is similar to most languages

IF condition then expr; elsif condition then expr; ELSE expr; END IF;

As an example:

Select count (Distinct index_name)  INTO CNT FROM USER_INDEXES WHERE  Table_name=c1. table_name;    if cnt > 1 then         FOR C2 IN  (select distinct index_name from user_indexes  Where table_name=c1. table_name)  LOOP        EXECUTE IMMEDIATE  ' alter  index  '  | |  c2. index_name | |   '  rebuild ';        end loop;     Elsif cnt = 1 then        execute immediate   ' alter index  '  | |  c2. index_name | |   '  rebuild ';     else        dbms_output. Put_Line (C1. table_name| | '  there is no indexes need to rEbuilding ');    end if; 

This article is from the "linuxoracle" blog, make sure to keep this source http://onlinekof2001.blog.51cto.com/3106724/1615011

Structure of Oracle PL/SQL IF statements

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.