I have a list of events in MySQL where there's event titles, event time, date etc. In each event there are invitees (people who got invited to the event).
So basically my table events table looks like this:

By looking at the table you'll notice that my event_invitees is an array, I managed to save an array using a tutorial here. So from this tutorial I am able to get the array out out the table.
What I want to so is SELECT a column form the table WHERE myString is in the event_invitees array
So using the image above as an example. I have a string "tnylee" I want to be able to select every row that contains the event_invitees called tnylee.
How can I do this? Is this possible? Please comment if the question isn't clear enough
Any help will be greatly appreciated. Thank you.