Use of % TYPE and % ROWTYPE in ORACLE, % type % rowtype

Source: Internet
Author: User

Use of % TYPE and % ROWTYPE in ORACLE, % type % rowtype

% TYPE is used in the declaration of variables to obtain the field TYPE in the table;

% ROWTYPE is used to declare the row type based on a table;
 

Example:

% ROWTYPE

DECLARE
CURSOR pdct_cur
Is select * from productinfo;

Cur_prodcrd productinfo % ROWTYPE;

BEGIN
OPEN pdct_cur;
FETCH pdct_cur INTO cur_prodrcd;
DBMS_OUTPUT_PUTLINE (cur_prodrcd.productid | '-' | cur_prodrcd.productname );
CLOSE pdct_cur;
END;


% TYPE usage

DECLARE
Cur_productid varchar (10 );
Cur_prodctname productinfo. productname % TYPE;

CURSOR pdct_cur
Is select productid, productname from productinfo;


BEGIN
OPEN pdct_cur;
FETCH pdct_cur INTO cur_productid, cur_productname;
DBMS_OUTPUT_PUTLINE (productid | '-' | productname );
CLOSE pdct_cur;
END;

 

Http://leettest.com

 

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.