January 2018
Intermediate to advanced
446 pages
12h 57m
English
MySQL supports many operators for filtering results. Refer to https://dev.mysql.com/doc/refman/8.0/en/comparison-operators.html for a list of all the operators. We will discuss a few operators here. LIKE and RLIKE are explained in detail in the next examples:
mysql> SELECT COUNT(*) FROM employees WHERE last_name IN ('Christ', 'Lamba', 'Baba');+----------+| COUNT(*) |+----------+| 626 |+----------+1 row in set (0.08 sec)
Read now
Unlock full access