To get the equivalent with LIKE, you'd have had to use % wildcards at the end:
mysql> mysql> SELECT 'abcdef' LIKE 'abc%'; +----------------------+ | 'abcdef' LIKE 'abc%' | +----------------------+ | 1 | +----------------------+ 1 row in set (0.00 sec) mysql>