for example:EventID | Key | Value---------------------------22233 | keya | some Text22233 | keyb | another String22233 | keyc | foo22244 | keya | some Text22244 | keyb | bar
Now I want to select a part like this:SELECT * FROM Table WHERE Value LIKE'%foo%';RESULT:EventID | Key | Value---------------------------22233 | keyc | foo
But I also want all other entries with this [EventID].So the result should be:EventID | Key | Value---------------------------22233 | keya | some Text22233 | keyb | another String22233 | keyc | foo
Is this possible?