Thursday, 8 December 2016

Mysql - Regex Operator

Mysql - Regex Operator
//

In Mysql if we want to run a query that has condition like record should start with 'D' or 'E'.
Normally we use Like Operator.

select * from tablename where name like 'D%' OR name like 'E%'

But using REGEX in MySql we can get same result without using OR in query

select * from
Read More about it from the following link : http://coding-guru.com/mysql-regex-operator/ posted by Techy


Previous Post
Next Post

About Author

0 comments: