Data cleansing Note: determines whether it is a digital Function

Source: Internet
Author: User

Data cleansing Note: determines whether it is a digital Function

Background]

When data is being processed, a large number of Chinese characters or meaningless English characters appear when inserting data into a field of the number type. Check that all data is junk and need to be cleaned.

 

[Solution]

It is planned to call the number judgment function to complete the judgment. If it is determined to be a number type, it is stored in the data. If it is not a number type, null value is assigned for processing.

Compile the "determine whether it is a number" function as follows:

Createorreplacefunction isnum (v_in varchar2)

Returnvarcharis

V_err exception;

Pragmaexception_init (v_err,-6502 );

Sub_num number;

Begin

Sub_num: = to_number (v_in );

Return v_in;

Exceptionwhen v_errthen

Return '';

End;

This function indicates that if v_in is a number, the number is output. If v_in is not a number, null is returned. Add this function to the data processing statement for determination.

 

[Experiment]

Small knowledge, easy to remember.

 

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.