Vous pouvez également utiliser la colonne à droite du "J'aime" :
SELECT domain FROM table WHERE 'www.google.com' LIKE CONCAT('%', domain);
ou
SELECT domain FROM table WHERE 'www.google.com' LIKE CONCAT('%', domain, '%');
Ce n'est pas particulièrement efficace mais ça marche.