Three major Oracle Variables

Source: Internet
Author: User

Set serveroutput on;


Scalar:

Declare v_name mytable. name % type;

Begin

Select name into V _ name from mytable where id = & AAAAA;

Dbms_output.put_line ('name: '| V _
Name );

Exception

When no_data_foundthen dbms_output.put_line ('no number ');

End;


Combination:

Declare type emp_record is record
-- Define the record type

(

Name EMP. name % type,

Salary EMP. Salary % Type

);

Myrecord emp_record; -- Define record Variables

Begin

Select name, salary into myrecord from mytable where id = 1;

Exception

When no_data_found then dbms_output.put_line ('no number ');

End;

Refer:

Declare type my_cursor is ref cursor;

Mycursor my_cursor;

V_name mytable. name % type;

Begin

Open mycursor for select name from mytable;

Loop

Fetch mycursor into name;

Exit when mycursor % notfound;

End loop;

Close mycursor;

Exception

When no_data_found then dbms_output.put_line ("no number ");

End;

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.