Yes, this can be achieved using the regexp keyword.
For example: I want to search for records in the admin table where the username field is a number. You can use the following SQL statement:
select * from articles where title regexp '[0-9].+';
http://www.bkjia.com/PHPjc/632398.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632398.htmlTechArticleYes, it can be achieved using the regexp keyword. For example: I want to search for records in the admin table where the username field is a number. You can use the following SQL statement: select * from articles whe...