Oracle Stored Procedure Loop insert a table to another table

Source: Internet
Author: User

Oracle Stored procedure Loop insert a table to another table 1. create a Stored procedure SQL code create or replace procedure inserttest as cursor cs is SELECT sales_id FROM t02salesinfo_backup; sales_id varchar (128 ); begin for c in cs loop BEGIN insert into gf_target_personaltarget (USER_ACCOUNT_ID, PERSONAL_VFYP) values (c. sales_id, '200'); END; end loop; end inserttest; 2. Clear the SQL code of the table you want to insert data into. truncate table gf_target_personaltarget; 3. Execute the Stored Procedure SQL code call I on the command line Nserttest (); ------- here there are Parentheses, parameters also need to be passed! Commit;

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.