0 votes
in Sql by
What is the difference between the LIKE and REGEXP operators?

1 Answer

0 votes
by
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";

Related questions

0 votes
asked Jan 13 in Sql by DavidAnderson
+1 vote
asked Jun 25, 2019 in Dot Net by Venkatshastri
...