Variable Definition method

Source: Internet
Author: User
11) Variable Definition method//Define a V_name variable,//type size consistent with the EMP table ename field V_name Emp.ename%type;   Defines a v_emp variable, which is a record type//can store one row of record information v_emp Emp%rowtype;     Declare v_emp emp%rowtype;--record variable begin SELECT * into V_emp from EMP where empno=7900;     Dbms_output.put_line (V_emp.ename);  Dbms_output.put_line (v_emp.sal); End

Variable Definition method

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.