Using regular expressions in MySQL

Source: Internet
Author: User

The RegExp function in MySQL can match regular expressions in peacetime when using SQL, and you can use the RegExp function to match the corresponding characters when using some query conditions, which can replace many of the SQL functions that you are unfamiliar with or do not understand, and thus improve your daily productivity. The RegExp function under MySQL is very simple to use, the meta-character of the regular expression can be see: The Http://jim123.blog.51cto.com/4763600/1850919,REGEXP function return value is a Boolean value of 0 and 1, that is, the match is 1, Not worthy of 0, such as:

mysql> SELECT ' monty! ' REGEXP ' ^o '; +----------------------+| ' monty! '                    REGEXP ' ^o ' |+----------------------+| 0 |+----------------------+1 row in Set (0.00 sec) mysql> SELECT ' monty! ' REGEXP ' ^m '; +----------------------+| ' monty! '                    REGEXP ' ^m ' |+----------------------+| 1 |+----------------------+1 row in Set (0.00 sec)


This article from "Jim's Technical Essay" blog, reproduced please contact the author!

Using regular expressions in MySQL

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.