mysl comme insérer une variable

SET @email = '[email protected]';

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