Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the difference between the LIKE and REGEXP operators?
Home
Sql
What is the difference between the LIKE and REGEXP operators?
0
votes
asked
Jan 14
in
Sql
by
AdilsonLima
What is the difference between the LIKE and REGEXP operators?
mysql-interview-qeustions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 14
by
AdilsonLima
LIKE and REGEXP operators are used to express with ^ and %.
SELECT * FROM employee WHERE emp_name REGEXP "^b";
SELECT * FROM employee WHERE emp_name LIKE "%b";
...