I am currently using sql server 2014
I have a sql column which could contain the following values
user_email
--------------------------------------------
fred.bloggs@abc.co.uk
joe.bloggs@abc.co.uk
sally.bloggs@abc.co.uk;fred.bloggs@abc.co.uk
I need to select columns and build a where clause
so where user_email like '%sally.bloggs@abc.co.uk%'
will select the 3rd row, but if I was to do user_email like '%lly.bloggs@abc.co.uk%'
it would not select the 3rd row.
Hopefully this makes sense?
I can't seem to find a solution.