The path to oracle Learning (6) two practical examples, the path to oracle

Source: Internet
Author: User

The path to oracle Learning (6) two practical examples, the path to oracle
1. Simple data insertion example

-- Created on 2015/6/15 by LYH declare v_fnumber varchar2 (10): = 'qw'; v_fname varchar2 (10): = 'lyh'; v_fage int: = 10; v_fsalary int: = 101.00; begin insert into t_employee (fnumber, fname, fage, fsalary) VALUES (v_fnumber, v_fname, v_fage, v_fsalary); COMMIT; end;
2. Simple data deletion example
-- Created on 2015/6/15 by LYH declare v_fnumber varchar2 (10): = 'asd '; v_fname varchar2 (10): = 'gqy'; v_fage int: = 12; v_salary int: = 13; begin delete from t_employee WHERE fname = 'lyh'; COMMIT; end;

3. An example of Modification

-- Created on 2015/6/15 by LYH declare v_fnumber varchar2 (10): = 'gqy'; v_fname varchar2 (10): = 'gqy'; v_fage int: = '12'; v_fsalary int: = '20140901'; begin UPDATE t_employee SET fnumber = v_fnumber, fname = v_fname, fage = v_fage, fsalary = v_fsalary WHERE fnumber = '20160901'; end;

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.