MySQL checks whether a string is a number.

Source: Internet
Author: User

Delimiter $
Drop function if exists 'isnum' $
Create Function 'isnum' (STR varchar (25) returns int
Begin
Declare iresult int default 0;
If isnull (STR) then return 0; end if; -- Null String
If STR = ''then return 0; end if; -- Null String
Select STR Regexp '^ [0-9] * $ 'into iresult;
If iresult = 1 then
Return 1;
Else
Return 0;
End if;
End $
Delimiter;
For more information about delimiter, see the description of delimiter in MySQL function definition.
This function is used to determine whether a given string is a function. Usage example:
Select isnum ('12'); -- the result is 1
Select isnum ('12-'); -- the result is 0.
Select isnum (description) from table_xx

From http://blog.sina.com.cn/s/blog_69735aa501014cxo.html

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.