I work with media storage for which there is a video table that has timecode values stored as a comma separated string in a var char column. I'm trying to find results where there instances of the same timecode appearing twice in the same value
For example, i want to be able to use a LIKE operator to retrieve anything that follows this pattern
COLUMN Timecode
VALUE '00:00:10;00,00:00:10;00'
basically if values are anything like 'A,A,B' or 'A,B,B' etc I'm trying to query for that.