Use SQL to obtain the numeric part of a string-mysql tutorial

Source: Internet
Author: User
This method can be used to query records with fixed numbers in a field.

This method can be used to query records with fixed numbers in a field.

The code is as follows:
Create function dbo. F_Get_No
(
@ No varchar (100)
)
RETURNS bigint
AS
BEGIN
While patindex ('% [^ 0-9] %', @ No)> 0
BEGIN
SET @ No = STUFF (@ No, PATINDEX ('% [^ 0-9] %', @ No), 1, '') -- deletes a non-numeric character, the loop ends. The remaining part is the number.
END
Return convert (bigint, @ No)
END

This function returns the numeric part of a string.
The PATINDEX function returns the index that appears for the first time in the string.
The STUFF function deletes characters of the specified length and inserts a group of characters at the specified start point.
Select F_Get_No ('sdsdf2334sfsd234 '), and '1234' is returned'
Note: This method can be used to query records whose numbers are fixed values in a field, and the letters are fixed values.
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.