mysl как вставьте переменную

SET @email = 'test@test.com';

SELECT email from `user` WHERE email LIKE CONCAT('%', @email, '%');
Dull Dragonfly